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

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -