Rollin_s
Rollin_s

Reputation: 1983

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?

Upvotes: 12

Views: 5172

Answers (1)

Xion
Xion

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

Related Questions