25

我想做的事:

我希望 MainActivity 的每个 Fragment 使用不同的主题,以便 ActionBar 具有不同的背景颜色,具体取决于可见的 Fragment。

情况:

我创建了一个使用 Tabs + Swipe Navigation 的 MainActivity。我添加了 7 个标签(=7 个片段)。我创建了一个仅应用于第一个片段 (fragment_main_1) 的主题。

这里的主题:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Blue" parent="android:Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/Blue.ActionBarStyle</item>
</style>

<style name="Blue.ActionBarStyle" parent="android:Widget.Holo.Light.ActionBar">
    <item name="android:titleTextStyle">@style/Blue.ActionBar.TitleTextStyle</item>
    <item name="android:background">#33B5E5</item>
</style>

<style name="Blue.ActionBar.TitleTextStyle" parent="android:TextAppearance.Holo.Widget.ActionBar.Title">
    <item name="android:textColor">#FFFFFF</item>
</style>
</resources>

在创建另外 6 个主题后,应该可以在 ActionBar 自动更改其背景颜色时滑动浏览选项卡。

什么不起作用:

将这些行(我在 stackoverflow 上找到)添加到 Fragment1.java:

// create ContextThemeWrapper from the original Activity Context with the custom theme
final Context contextThemeWrapper = new ContextThemeWrapper(getActivity(), R.style.Blue);

// clone the inflater using the ContextThemeWrapper
LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);

// inflate the layout using the cloned inflater, not default inflater
return localInflater.inflate(R.layout.fragment_main_1,container, false);

我希望你能帮助我:)谢谢。

4

2 回答 2

3

许多片段(例如PreferenceFragment)直接从Context返回的Fragment.getContext()方法中读取样式属性,因此您可能也需要覆盖它:

private var themedContext: Context? = null

override fun onAttach(context: Context) {
    super.onAttach(context).also {
        themedContext = ContextThemeWrapper(context, R.style.ThemeForThisFragment)
        // if you want to apply a theme overlay:
        // themedContext.theme.applyStyle(R.style.MyThemeOverlay, true)
    }
}

override fun onDetach() {
    super.onDetach()
    themedContext = null
}

override fun getContext(): Context? {
    return themedContext ?: super.getContext()
}
于 2020-07-07T09:30:29.757 回答
2

试试LayoutInflater localInflater = inflater.from(contextThemeWrapper);吧。

于 2013-03-27T16:13:17.363 回答