2

自定义操作栏时,我遵循了Google的主题指南。我还在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>

我的样式.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>

如何更改基础应用程序的背景。我要黑色

谢谢你。

4

1 回答 1

2

我有同样的问题,这个解决方案对我有用。只需更改活动主题样式的 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>
于 2015-09-07T13:55:22.970 回答