gpt4 book ai didi

android - 自定义主题不适用于 FragmentActivity

转载 作者:行者123 更新时间:2023-11-29 01:35:17 27 4
gpt4 key购买 nike

我的主题不工作我已经看到了这个How do I change the background color of the ActionBar of an ActionBarActivity using XML?但不工作仍然是灰色的,只有 SplahScreen Activity 改变了,但是 MainActivity extend FragmentActivity 没有: list :

   <application
android:largeHeap="true"
android:name="asasdsd.asdasdas"
android:allowBackup="true"
android:icon="@drawable/ic_launcher2"
android:label="@string/app_name"
android:theme="@style/MyTheme"
>
<activity
android:name="app.sultan.sdcinfo.SplashScreen"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name="app.sultan.sdcinfo.MainActivity"
android:label="@string/app_name"
android:theme="@style/MyTheme"
>
</activity>

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />`

我有本地化并在每种语言中添加主题文件,值 11 仍然没有改变:Theme.xml

      `<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#262626</item>
</style>`

尝试使用 getActionbar.setBackgroundDrawable(new ColorDrawable("COLOR"));

请看我的项目结构:启动画面 Activity 然后主要 Activity 包括抽屉导航, Activity 颜色背景中的 fragment 已更改但 fragment 中没有

最佳答案

您无法更改操作栏背景颜色,因为您没有使用 Widget.Holo.Light.ActionBar.Solid.Inverse 作为 MyActionBar 的父级

使用

parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"

代替

parent="@android:style/Widget.Holo.Light.ActionBar

所以你的 theme.xml 会像,

<resources>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">#262626</item>
</style>
</resources>

来源:Customize ActiobBar Background (Official Documentation)

关于android - 自定义主题不适用于 FragmentActivity,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28609110/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com