在Android 4.3 api 18上更改ActionBarActivity上的主题

时间:2013-07-29 15:09:45

标签: android android-actionbar android-4.3-jelly-bean android-actionbar-compat

你好我想在运行时改变我的app主题,使用actionBar兼容性(new api 18)这是我的主题:

    <style name="AppThemeDay" parent="@style/Theme.AppCompat.Light">
      <item name="android:actionBarSize">....</item>
    </style>

    <style name="AppThemeNight" parent="@style/Theme.AppCompat">
      <item name="android:actionBarSize">...</item>
    </style>

现在我想将主题更改为我的ActionBarActivity:

if(day){
  setTheme(R.style.AppThemeDay);
} else{
    setTheme(R.style.AppThemeNight);
}

但我没有变化..为什么?

1 个答案:

答案 0 :(得分:0)

谢谢你的回复!我在setContentView(View)之后调用了setTheme ..