Android style inheritance

I know that a style can be inherited in android through the "parent" property, but all the examples I found do this using the Android built-in style. Can I use it with my own styles?

+6
source share
1 answer

it’s possible to use your own styles as parent. This makes sense if you want to provide different themes for the same basic themes.

+6
source

Source: https://habr.com/ru/post/911493/


All Articles