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