gpt4 book ai didi

java - 由于操作栏主题,应用程序强制关闭 - android

转载 作者:数据小太阳 更新时间:2023-10-29 02:36:01 24 4
gpt4 key购买 nike

我正在使用 actionbarsherlock。用我的自定义主题

我在 values/styles.xml 中输入了这个。

<style name="Mytheme" parent="@style/Theme.Sherlock.Light">
<item name="android:background">@drawable/actionbar_bg</item>
</style>

actionbar_bg

<?xml version="1.0" encoding="utf-8"?>
<gradient xmlns:android="http://schemas.android.com/apk/res/android"
android:type="linear"
android:centerX="8%"
android:startColor="#969696"
android:centerColor="#FFFFFF"
android:endColor="#FFFFFFFF"
android:angle="270"
/>

list

<activity
android:name="com.example.myapp.Secondactivity"
android:label="@string/title_activity_second"
android:theme="@style/Mytheme">
</activity>

Logcat 错误无法启动 Activity ,android.view.InflateException:二进制 XML 文件第 21 行:错误膨胀类

当我删除 android:theme="@style/Mytheme" 行时,应用程序运行正常

更新:我将 android:background 更改为“background”,应用程序现在不会强制关闭。但不应用渐变。我只能看到一个灰色的操作栏。

更新#2

修改styles.xml如下

<style name="Mytheme" parent="@style/Theme.Sherlock.Light">
<item name="actionBarStyle">@style/MyActionBarTheme</item>
</style>

<style name="MyActionBarTheme" parent="Widget.Sherlock.ActionBar">
<item name="background">@drawable/actionbar_bg</item>
<item name="android:background">@drawable/actionbar_bg</item>
</style>

在 Manifest 中,我将主题称为android:theme="@style/MyActionBarTheme".

正如您在图像中看到的那样,渐变分布在整个窗口上,而不仅仅是操作栏

enter image description here

最佳答案

添加这个actionbar_bg.xml

enter image description here

Drawable dr = getResources().getDrawable(R.drawable.actionbar_bg);
getActionBar().setBackgroundDrawable(dr);

actionbar_bg.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<gradient
android:angle="270"
android:centerColor="#FFFFFF"
android:centerX="8%"
android:endColor="#FFFFFFFF"
android:startColor="#969696"
android:type="linear" />

</shape>

关于java - 由于操作栏主题,应用程序强制关闭 - android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16167931/

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