This solution is designed to change the color of a material effect button in an AppCompatDialogFragment .
<android.support.v7.widget.AppCompatButton android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="20dp" android:text="@string/buttin" android:theme="@style/AppTheme.MyButton" />
Style File - v21
<style name="AppTheme.MyButton" parent="Theme.AppCompat.Dialog.Alert"> <item name="android:colorButtonNormal">@color/button_color</item> <item name="android:textColor">@color/text_color</item> </style>
Style file
<style name="AppTheme.MyButton" parent="Theme.AppCompat.Dialog.Alert"> <item name="colorButtonNormal">@color/button_color</item> <item name="android:textColor">@color/text_color</item> </style>
source share