admin管理员组文章数量:1345109
Before that, I used the standard android buttons, but I needed to make a custom button and I wrote such a class.
public class MyButton extends androidx.appcompat.widget.AppCompatButton {
private boolean showIfNotAccessibleByRole;
private final AccessUrlUtils accessUrlUtils = new AccessUrlUtils();
ToastCreator toastCreator = new ToastCreator();
public MyButton(Context context) {
super(context);
init(null, 0);
}
public MyButton(Context context, AttributeSet attrs) {
super(context, attrs);
init(attrs, 0);
}
public MyButton(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(attrs, defStyleAttr);
}
private void init(AttributeSet attrs, int defStyle) {
// Load attributes
final TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.MyButton, defStyle, 0);
showIfNotAccessibleByRole = a.getBoolean(R.styleable.MyButton_showIfNotAccessibleByRole, true);
a.recycle();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (!showIfNotAccessibleByRole) {
if (!accessUrlUtils.checkRoleBasedAccessByView(this)) {
setVisibility(GONE);
}
}
}
@Override
public void setOnClickListener(@Nullable OnClickListener l) {
OnClickListener onClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
if (accessUrlUtils.checkRoleBasedAccessByView(v)) {
if (accessUrlUtils.checkSubscriptionBasedAccessByView(v)) {
if (l != null) {
l.onClick(v);
}
}
else {
SubscriptionDialog subscriptionDialog = new SubscriptionDialog(getContext());
subscriptionDialog.show();
}
}
else {
toastCreator.createToast(getContext(), (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE), getResources().getStringArray(R.array.errors)[17], getActivity());
}
}
};
super.setOnClickListener(onClickListener);
}
@Override
public void setOnLongClickListener(@Nullable OnLongClickListener l) {
OnLongClickListener onLongClickListener = new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
if (accessUrlUtils.checkRoleBasedAccessByView(v, ClickType.LONG)) {
if (accessUrlUtils.checkSubscriptionBasedAccessByView(v, ClickType.LONG)) {
if (l != null) {
return l.onLongClick(v);
}
}
else {
SubscriptionDialog subscriptionDialog = new SubscriptionDialog(getContext());
subscriptionDialog.show();
}
}
else {
toastCreator.createToast(getContext(), (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE), getResources().getStringArray(R.array.errors)[17], getActivity());
}
return false;
}
};
super.setOnLongClickListener(onLongClickListener);
}
private Activity getActivity() {
Context context = getContext();
while (context instanceof ContextWrapper) {
if (context instanceof Activity) {
return (Activity)context;
}
context = ((ContextWrapper)context).getBaseContext();
}
return null;
}
}
However, when using this class, the styles that I wrote for the buttons are not applied, and the buttons look like standard buttons in android. How can I fix this without destroing my class?
本文标签: javaHow to create custom button class in android that wouldn not change visualStack Overflow
版权声明:本文标题:java - How to create custom button class in android that wouldn not change visual? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743750447a2532547.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论