You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The buttons still have a dropshadow. The code to fix this: TypedValue value = new TypedValue(); getApplicationContext().getTheme().resolveAttribute(R.style.Widget_AppCompat_Button_Borderless, value, true); button.setBackgroundResource(value.resourceId);
The problem is that this overwrites our custom button style. You can't have 2 backgroundResources on 1 button.
The text was updated successfully, but these errors were encountered:
The buttons still have a dropshadow. The code to fix this:
TypedValue value = new TypedValue(); getApplicationContext().getTheme().resolveAttribute(R.style.Widget_AppCompat_Button_Borderless, value, true);
button.setBackgroundResource(value.resourceId);
The problem is that this overwrites our custom button style. You can't have 2 backgroundResources on 1 button.
The text was updated successfully, but these errors were encountered: