主题未被应用

时间:2012-10-29 08:27:34

标签: android android-layout android-theme

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

以下是相关的XML:

styles.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中的主题,它在图形布局中不会改变。

任何帮助?

修改 得到它的工作。必须在重新加载布局之前清理项目。非常烦人......

2 个答案:

答案 0 :(得分:1)

我已经检查过您的代码了。

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

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

并且您已在应用程序和活动中编写android:theme="@style/STBTheme" >

只需写入应用程序标记。

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

答案 1 :(得分:1)

  1. Open the preview of your activity and Click on the circled button as shown

  2. Type the name of your custom theme and Click 'OK' as shown

  3. 在Manifest文件中添加属性android:theme =&#34; .YourTheme&#34;到所需的活动

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

    我不知道为什么Android Studio有时会像喝醉一样。我有两个具有相同目标的项目,最小SDK活动。其中一个正确实现了启动画面主题,另一个只是在我找到这个解决方法之前不会显示。