主题更改不适用于< 4.0

时间:2012-10-06 21:35:50

标签: android android-layout styles themes android-theme

我在以编程方式设置“主题切换器”时遇到了一些困难。 我想从app切换主题(在White(Theme.Light.NoTitleBar)和Dark(Theme.Black.NoTitleBar)之间),我的工作是: 我设置了一个SharedPreference:

final String PREFS_NAME = "MyPrefsFile";
    final SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
    final SharedPreferences.Editor editor = settings.edit();

而且我有两个按钮来切换主题(第二个几乎相同)

Button ThemeWhite = (Button) findViewById(R.id.ThemeWhite);
    ThemeWhite.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            editor.putBoolean("Theme", false);
              editor.commit();
              System.exit(2);
        }
    });

在每个活动的请求中,我检查SharedPreference

boolean theme = settings.getBoolean("Theme", false);
    if(theme){
        this.setTheme(R.style.Theme_NoBarBlack);
    } else{
        this.setTheme(R.style.Theme_NoBar);
    }

    setContentView(R.layout.aplikacja);

我在文件夹 styles.xml 中定义文件夹值中的主题:

<resources>
<style name="Theme.NoBar" parent="@android:style/Theme.Light.NoTitleBar" />
<style name="Theme.NoBarBlack" parent="@android:style/Theme.NoTitleBar" />

in values-v11:

<resources>
<style name="Theme.NoBar" parent="@android:style/Theme.Holo.Light.NoActionBar" />
<style name="Theme.NoBarBlack" parent="@android:style/Theme.Holo.NoActionBar" />

in values-v14:

<resources>
<style name="Theme.NoBar" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar" />
<style name="Theme.NoBarBlack" parent="@android:style/Theme.DeviceDefault.NoActionBar" />

清单文件:

    <application
...
        android:theme="@style/Theme.NoBar" >

一切都在Android&gt; 4.0 上运行良好但是当我使用2.2它不会改变主题 - 只是字体变得白皙,但它没有深色背景。

我试过检查它是否至少有效并且更改了Theme.NoBarBlack的值(对于android&lt; 3.0)并且它的值与Theme.NoBar相同然后当我按下按钮时字体没有改变 - 它应该做什么

编辑(发现问题): 因此,在尝试之后,在Android 2.2 Manifest文件集上设置背景和休息,并且以编程方式更改主题仅影响文本颜色。知道为什么会这样吗?

答案(因为我没有10个声誉): 在android&lt; 3.0上,重要的是

super.onCreate(savedInstanceState);

是否在设置主题之前。

所以它应该是:

public void onCreate(Bundle savedInstanceState) {
    setTheme(R.style.Theme_NoBar);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.lista);
}

不好意思,因为它正在处理&gt; 3.0,因此我很困惑。花一半时间,但工作。 :)

1 个答案:

答案 0 :(得分:3)

你的styles.xml有一个错误: 对于Theme.NoBarBlack,您将父级设置为@android:style/Theme.NoActionBar,但它不存在。

我认为你的意思是@android:style:Theme.NoTitleBar