2

我正在尝试将 ActionBar 添加到我的 main_activity 但是我收到错误 The following classes could not be found: - android.support.v7.internal.app.WindowDecorActionBar 我已经安装了支持存储库和支持库,并且想知道我应该添加哪些依赖项来解决这个问题。最低 SDK 版本为 15,目标 SDK 版本为 23,如果这有助于解决问题。我是 Android 开发的新手,如果我听起来很愚蠢,我很抱歉!

4

1 回答 1

1
final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    final ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.setDisplayShowTitleEnabled(true);
        actionBar.setDisplayHomeAsUpEnabled(true);
    }

在你的 xml 布局文件中

<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:popupTheme="@style/ThemeOverlay.AppCompat.Dark" />
于 2015-11-14T13:26:36.140 回答