How to override styles of a library which has its own Activity

不想你离开。 提交于 2019-12-21 08:23:52

问题


I have a library which has its own Activities with colorPrimary and colorPrimaryDark attributes. In the application which is using this library, there are different values for these color attributes.

Is there a way to make the library use the style provided by the caller application?

So that in the end, if the app has a green toolbar, the activities in the library would have a green toolbar, not the one defined in library theme.

This is the library's theme:

<style name="LibraryTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/red</item>
    <item name="colorPrimaryDark">@color/dark_red</item>
</style>

And this is the sample app's main theme:

<style name="SampleAppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/green</item>
    <item name="colorPrimaryDark">@color/dark_green</item>
    <item name="colorAccent">@color/accent_color</item>
</style>

回答1:


If "colorPrimary" will use the same value - @color/primaryColor, then value of library primaryColor will be overridden by primaryColor in sample app.

If you will use different values for "colorPrimary" in library and app, for example - @color/libPrimaryColor and @color/appPrimaryColor then colors will be different




回答2:


You can override the theme in your style file,

<style name="LibraryTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">Your color</item>
    <item name="colorPrimaryDark">Your color, too</item>
</style>


来源:https://stackoverflow.com/questions/35315120/how-to-override-styles-of-a-library-which-has-its-own-activity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!