5

我在以编程方式设置“主题切换器”时遇到了一些困难。我想从应用程序(白色(Theme.Light.NoTitleBar)和黑暗(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" />

在值-v11 中:

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

在值-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 >4.0 上运行良好,但是当我使用 2.2 时,它不会改变主题- 只是字体变白了,但没有深色背景。

我尝试检查它是否至少可以工作并更改了 Theme.NoBarBlack 的值(对于 android <3.0),它的值与 Theme.NoBar 相同,然后当我按下按钮时字体没有改变 - 正如它应该做的那样。

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

答案(因为我没有 10 声望): 在 android <3.0 上,如果

super.onCreate(savedInstanceState);

是否在设置主题之前。

所以应该是:

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

抱歉,伙计们无中生有,但是当它在> 3.0上工作时,我很困惑。花半天时间在上面,但工作。:)

4

1 回答 1

3

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

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

于 2012-10-06T21:48:42.277 回答