升级到 AppCompat v22.1.0 现在出现 IllegalArgumentException: AppCompat does not support the current theme features

Upgraded to AppCompat v22.1.0 and now getting IllegalArgumentException: AppCompat does not support the current theme features

我刚刚升级了我的应用程序以使用新发布的 v22.1.0 AppCompat,现在当我打开我的应用程序时出现以下异常。

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)

我该如何解决?

AppCompat 现在对主题 window 标志中的期望更加严格,更接近于您从框架中获得的内容。

这背后的主要原因是为了支持 AppCompatDialogs,我们也在这个版本中添加了它。他们大量使用 windowNoTitle 标志,而 AppCompat 以前并没有太多关注它。

因此,要解决您的问题,您有两个选择:

最简单的方法是只使用 Theme.AppCompat.NoActionBar 作为您的父主题。这将始终做正确的事。

如果您不能这样做(也许您需要支持操作栏和不支持操作栏),您应该执行以下操作:

<style name="MyTheme" parent="Theme.AppCompat">
    ...
</style>

<style name="MyTheme.NoActionBar">
    <!-- Both of these are needed -->
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

你现在应该回到正轨了。

只需在 values-v21 文件夹中的 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>

不要在 activity 文件中添加任何内容,请保留它

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);
    }
}

我加了

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

但这还不够。 最后,在 Activity 中的 setContentView 之前移动 super.onCreate - 解决了我的问题:)

   public void onCreate(Bundle savedInstanceState) {    

        super.onCreate(savedInstanceState);    
        setContentView(R.layout.v2_main_dash);
        ...

那些在所有这些修复之后仍然出现错误的人。

请继承自

Theme.AppCompat.Light.NoActionBar

并且不要使用

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

这样就不会报错了。