我在自定义操作栏时遵循了Googles theme guide。我还在ActionBar
上添加了圆角顶角。问题是在角落后面出现白色,它们是圆形的。
这是我的活动main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
</RelativeLayout>
我的styles.xml
<style name="AppBaseTheme" parent="android:Theme">
<item name="android:windowBackground">@color/black</item>
</style>
这是我的actionbar_theme.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#ffc71e"
android:endColor="#d09e07"
android:type="linear"
android:angle="270"/>
<stroke
android:width="1px"
android:color="#333" >
</stroke>
<corners
android:topLeftRadius="7dp"
android:topRightRadius="7dp">
</corners>
</shape>
如何更改基本应用程序的背景。我想要它是黑色的。
谢谢。
答案 0 :(得分:1)
我遇到了同样的问题,这个解决方案对我有用。只需更改活动主题样式的colorBackground即可。
<item name="android:colorBackground">@android:color/black</item>
这是我在清单文件中的活动:
<activity
android:name=".MainActivity"
android:label="@string/title"
android:theme="@style/MyTheme"
android:parentActivityName=".MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
</activity>
我的主题样式xml文件styles.xml
<resources>
<style name="MyTheme" parent="Theme.AppCompat.Light">
<item name="android:colorBackground">@android:color/black</item>
</style>
</resources>