<Button android:id="@+id/btBTB" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@drawable/orange_custom_button_background" android:padding="5dp" android:text="@string/ant_terminator" android:textColor="@color/textColor" />
change to a style
in styles.xml
<style name="OrangeButton"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_margin">10dp</item> <item name="android:background">@drawable/orange_custom_button_background</item> <item name="android:padding">5dp</item> <item name="android:textColor">@color/textColor</item> </style>
After apply
<Button android:id="@+id/btBTB" style="@style/OrangeButton" android:text="@string/ant_terminator" />