升级到AppCompat v22.1.0版本后,获取AppCompat不支持当前主题功能异常

时间:2015-05-02 09:29:43

标签: android android-theme material-design android-styles appcompat-v7-r22.1

之前我在我的项目中使用AppCompat和版本21.1.2,以便使用工具栏进行材质设计切换。但升级到AppCompat v22.1.0后,我的应用程序开始变得奇怪了。我甚至尝试了一些解决方案,如下所示

<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>

同时将父主题应用为

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">

但上述解决方案都没有对我有帮助。亲切的,请帮助我提出您的提示和建议,以克服我目前面临的问题。我也发布了styles.xml和logcat错误供您参考。任何形式的帮助对我都有帮助。提前谢谢。

styles.xml

 <style name="MainActivityTheme" parent="Theme.AppCompat.NoActionBar">
        <item name="colorPrimary">@color/white</item>
        <item name="colorPrimaryDark">#F2F2F2</item>
        <item name="android:windowNoTitle">true</item>
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
        <item name="colorControlActivated">@color/yellow</item>
    </style>

Logcat错误:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sample.app/com.sample.app.activities.MainActivity}: java.lang.IllegalArgumentException: AppCompat does not support the current theme features
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2413)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2471)
            at android.app.ActivityThread.access$900(ActivityThread.java:175)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1308)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:146)
            at android.app.ActivityThread.main(ActivityThread.java:5602)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:515)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
            at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.IllegalArgumentException: AppCompat does not support the current theme features
            at android.support.v7.app.AppCompatDelegateImplV7.ensureSubDecor(AppCompatDelegateImplV7.java:360)
            at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:246)
            at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:106)
            at com.sample.app.activities.MainActivity.onCreate(MainActivity.java:24)
            at android.app.Activity.performCreate(Activity.java:5451)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2377)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2471)
            at android.app.ActivityThread.access$900(ActivityThread.java:175)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1308)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:146)
            at android.app.ActivityThread.main(ActivityThread.java:5602)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:515)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
            at dalvik.system.NativeStart.main(Native Method)

java.lang.IllegalArgumentException: AppCompat does not support the current theme features

可能重复

6 个答案:

答案 0 :(得分:16)

谢谢大家的回复。我通过删除行

自行解决了我的问题
<item name="android:windowNoTitle">true</item>

发生错误是因为添加了两次windowNoTitle,如下所示

<item name="android:windowNoTitle">true</item>
<item name="windowNoTitle">true</item>

答案 1 :(得分:7)

从MainActivityTheme中删除.NoActionBar

<style name="MainActivityTheme" parent="Theme.AppCompat">
        // ................................................
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
</style>

答案 2 :(得分:3)

删除

.NoActionBar

来自您的风格,因为您已在主题中使用windowNoTitle=falsewindowActionBar=false

答案 3 :(得分:1)

也许这会帮助一些人

在我的情况下,我没有使用.NoActionBar主题。我只是从这个项目中删除了android前缀。

<item name="windowActionBar">false</item>

另外我使用android studio和gradle shot for you

'com.android.support:appcompat-v7:22.2.0'

幸运的是,错误消失了。

答案 4 :(得分:0)

在我的情况下 我有这个代码==&gt;

<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
            <item name="android:windowNoTitle">true</item>
            <item name="windowActionBar">false</item>
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
</style>

当我删除

时它会起作用
<item name="windowActionBar">false</item>
希望这也可以帮助!!!

答案 5 :(得分:0)

只需在style.xml中使用此功能,无需进行其他编辑

 <style name="AppTheme" parent="Theme.AppCompat">

<!-- theme customizations -->

<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
 </style>

请勿将任何内容添加到活动文件中,请将其保留

  public class Main extends ActionBarActivity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
    return true;
}
return super.onOptionsItemSelected(item);
}
}