0

我只是想更改活动的背景颜色,但没有任何改变。

以下是相关的 XML:

样式.xml

<resources>
<style name="STBTheme" parent="android:Theme.Light" >
    <item name="android:windowBackground">@color/blue</item>
</style>
</resources>

AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.pedro.stb"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/STBTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" 
            android:theme="@style/STBTheme" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

此外,我使用的是 Eclipse,并且通过更改活动 xml 中的主题,它不会在图形布局中更改。

有什么帮助吗?

编辑 让它工作。在重新加载布局之前必须清理项目。很烦人...

4

2 回答 2

2

我检查了你的代码没问题。

尝试 <item name="android:Background">#ccff33</item>

而不是你的<item name="android:windowBackground">@color/blue</item>.

你也写android:theme="@style/STBTheme" >了应用程序和活动。

只需写在应用程序标签中。

希望你现在能得到你的输出。

于 2012-10-29T08:51:19.003 回答
1
  1. 打开活动的预览,然后单击带圆圈的按钮,如图所示

  2. 键入您的自定义主题的名称,然后单击“确定”,如图所示

  3. 在 Manifest 文件中,将属性 android:theme=".YourTheme" 添加到所需的 Activity

您将更改当前活动的主题。

我不知道为什么 Android Studio 有时表现得像喝醉了一样。我有两个具有相同目标的项目,最小 SDK 处于活动状态。其中一个正确实现了启动屏幕主题,另一个在我找到此解决方法之前不会显示。

于 2017-10-13T03:03:23.323 回答