Android native style -


i create custom style extends buttonbarbuttonstyle. however, figured, searching on internet, it's not possible extends native style.

where can find style source code ? or how can use create custom style, i'll use buttons.

thanks.

you can extend existing styles. have take @ styles.xml file. in base theme can add item:

<item name="android:buttonbarbuttonstyle">@style/mybuttonbarstyle</item> 

the have define new style like:

<style name="mybuttonbarstyle" parent="widget.appcompat.buttonbar">     <!-- here go custom attributes --> </style> 

you can choose parent holo or else.


Comments