Reputation: 1983
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?
Upvotes: 12
Views: 5172
Reputation: 22770
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.
Upvotes: 7