AppCompat v7 工具栏 "Error inflating class <unknown>"

AppCompat v7 Toolbar "Error inflating class <unknown>"

阅读 SO 线程 here and android blog post here 后,我需要使用 AppCompat V7:21 中引入的新工具栏功能。我准确地将博文中的工具栏片段复制到我的布局中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar                  <- Line 8
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:minHeight="?attr/actionBarSize"
        app:theme="@style/ThemeOverlay.AppCompat.ActionBar" />

</LinearLayout>    

问题是我得到了:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.blabla.PrefActivity}: android.view.InflateException: Binary XML file line #8: Error inflating class <unknown>    

有趣的是,如果我删除这一行: android:minHeight="?attr/actionBarSize"

有效。所以问题不是因为项目依赖性等等。看来我只能访问 ?attr 元素,如 actionBarSize 或 colorPrimary

不用说我已经添加了AppCompat依赖。而activity是继承自PreferenceActivity。这是我的 gradle:

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.3'
}

here and here 人随机报告解决了该问题。但是我的随机数这两天没用

编辑:

这是我的 activity:

public class PrefActivity extends PreferenceActivity {

private Toolbar mToolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ViewGroup root = (ViewGroup) findViewById(android.R.id.content);
    LinearLayout content = (LinearLayout) root.getChildAt(0);
    LinearLayout toolbarContainer = (LinearLayout) View.inflate(this, R.layout.activity_prefs, null);

    root.removeAllViews();
    toolbarContainer.addView(content);
    root.addView(toolbarContainer);

    mToolbar = (Toolbar) toolbarContainer.findViewById(R.id.toolbar);
    selectResource();
    mToolbar.setNavigationIcon(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
    mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            finish();
        }
    });
}

使用属性(?attr/) 意味着使用当前上下文主题中的值。您需要确保您的主题具有 ?attr/actionBarSize 属性的价值。您可以使用或继承@style/Theme.AppCompat 的主题。或者手动设置值。