我正在创建我的BaseActivity来调用另一个活动来调用抽屉和工具栏。该应用程序在Above API 21中打开,但在kitkat及以下版本中出错。
BaseActivity.java
@Override
public void setContentView(int layoutResID) {
drawer = (DrawerLayout) getLayoutInflater().inflate(R.layout.drawer, null);
frameLayout = (FrameLayout) drawer.findViewById(R.id.contentFrame);
linearLayout = (LinearLayout) drawer.findViewById(R.id.drawerlinearlayout);
listItems = (RecyclerView) drawer.findViewById(R.id.drawerListItem);
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
linearLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
listItems.setLayoutManager(linearLayoutManager);
}
它给了我getLayoutInflater.inflate()方法的错误。
drawer.xml
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/drawerLayout"
android:fitsSystemWindows="true">
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include android:id="@+id/app_bar"
layout="@layout/toolbar"/>
<FrameLayout android:id="@+id/contentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_gravity="left"
android:id="@+id/drawerlinearlayout">
<include layout="@layout/drawerheaderimage"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/drawerListItem"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"
android:background="#ffffff"
android:scrollbars="vertical"
android:layout_below="@+id/drawerheaderimage">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
以下是我的工具栏 的 toolbar.xml
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:layout_alignParentTop="true"
android:fitsSystemWindows="true"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
</android.support.v7.widget.Toolbar>
我正在使用23.2支持库.. 我做错了什么? Plz help..And感谢adv。
答案 0 :(得分:0)
这是您完整的xml布局吗?如果是这样那么它应该是这样的
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:layout_alignParentTop="true"
android:fitsSystemWindows="true"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>