Android - Change text colour of the bottom button bar -
i'm modifying downloads (for 4.3 jellybean) , can't change colour of text on bottom button black white. possible change text colour without giving button own style adding item in app theme? here styles.xml:
<style name="downloadlisttheme" parent="@android:style/theme.devicedefault.light.dialogwhenlarge"> <item name="android:textalignment">viewstart</item> <item name="android:layoutdirection">locale</item> <item name="android:actionbarstyle">@android:style/widget.devicedefault.light.actionbar.solid.inverse</item> <item name="com.sonyericsson.uxp:extendedlookandfeel">true</item> <item name="android:textcolor">@android:color/white</item> </style>
yes, can accomplish pretty easily, override theme in styles.xml this:
<style name="mybuttonstyle" parent="@android:style/theme.devicedefault.light.dialogwhenlarge"> <item name="android:textcolor">@android:color/white</item> </style> for more information, see documentation.
Comments
Post a Comment