gpt4 book ai didi

list 中的 Android ActionBar 颜色变化不正常

转载 作者:行者123 更新时间:2023-11-30 03:08:21 25 4
gpt4 key购买 nike

我正在通过创建自己的样式并通过 list 应用来更改 Android ActionBar 颜色。但是当我在模拟器上运行时,ActionBar 以及屏幕本身正在改变颜色。看图:

enter image description here

我试图搜索这个问题的答案,但没有找到解决方案。这是 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.actionbartestapp"
android:versionCode="1"
android:versionName="1.0" >

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

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/MyActionBar" >
<activity
android:name="com.example.actionbartestapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>

这里是 Styles.xml 文件:

<resources>

<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@color/SmugeBlue</item>
</style>

</resources>

最佳答案

在你的代码中你有

  parent="android:Theme.Light

注意我的代码的变化

  parent="@android:style/Theme.Holo.Light"

另请注意 <item name="android:actionBarStyle"

  <item name="android:actionBarStyle">@style/MyActionBar</item> // for action bar only

相反,你有

  <item name="android:background">@color/SmugeBlue</item> // so it changes background for entire screen

在相应的 res/values/styles.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">#FF9D21</item> // change to blue color
</style>

在 list 中

   android:theme="@style/MyTheme"

你可以看到一个带有快照的例子,尽管回答了关于溢出菜单图标的问题,它确实显示操作栏颜色已更改

Change action bar overflow icon

进一步的造型

https://developer.android.com/training/basics/actionbar/styling.html

关于 list 中的 Android ActionBar 颜色变化不正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21398975/

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