I changed a button color to black on android studio like this: In colors.xml:
<color name="colorBlack">#000000</color>
In styles.xml:
<style name="AppTheme.Button" parent="Base.Widget.AppCompat.Button">
<item name="colorButtonNormal">@color/colorBlack</item>
</style>
In layout_frag.xml:
<Button
android:id="@+id/button"
android:theme="@style/AppTheme.Button"
android:layout_width="match_parent"
android:layout_height="75dp"
android:text="@string/hello_first_fragment"
android:textColor="@color/design_default_color_background" />
My black button works properly, although the tint background color actions when pressing on the button doesn't work anymore since the button is super dark and the tint is normally dark grey. ![Button2 tint in grey onClick][1] I would like to know where can I change the tint action when clicking on the button?
You can override the
colorControlHighlight
attribute with:with:
If you are using a Material Components theme you can use a
MaterialButton
and therippleColor
attribute:With a selector like this: