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