1

我的应用程序使用的是ActionBarActivity,但我错误地将 Android Studio 升级为 22 版。所以现在我正试图让它AppCompatActivity工作,但我得到了错误

Caused by: android.view.InflateException: Binary XML file line #2: Error inflating class android.support.v7.widget.Toolbar

我的活动

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

    toolbar = (Toolbar) findViewById(R.id.app_bar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setHomeButtonEnabled(true);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    getFragmentManager().beginTransaction()
            .replace(R.id.content_frame, new UserPrefsFragment())
                    .commit();
}

我的 app_bar.xml

<?xml version="1.0" encoding="utf-8"?>
    <android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/grey">


</android.support.v7.widget.Toolbar>

我的Activity布局xml

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.panicsystems.reemul.legalpanic.UserPrefsActivity">

    <include
        android:id="@+id/app_bar"
        layout="@layout/app_bar" />

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/app_bar"/>

</RelativeLayout>
4

1 回答 1

0

我最终删除了 app_bar 的布局并重新创建它,然后在 Activity 的布局中我将 id 更改为布局文件名以外的其他内容。我还进行了清洁和重新启动。

于 2015-07-11T23:17:34.333 回答