Multiple parents in Android styles xml
When using android styles, one can specify a parent style like:
<style name="MyStyle" parent="@style/ParentStyle">开发者_如何转开发;</style>
Is is possible to specify multiple parents? If so, how?
According to documentation, the syntax for parent
attribute value is @[package:]style/style_to_inherit
(where package:
is optional) so a reference to just a single style resource is allowed.
精彩评论