我按照此simple Android guide添加 ActionBar 以与我的抽屉合并,但由于某种原因, ActionBar 已填满整个屏幕,我无法弄清楚是什么问题。 This guy seems to have the exact same problem但他4岁的解决方案并不适用于我的情况。
这是我的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- ActionBar -->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<!-- Main content view -->
<LinearLayout
android:id="@+id/input_window"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"/>
<!-- Navigation drawer -->
<ListView
android:id="@+id/categories_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/brightDrawerBackground"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
</android.support.v4.widget.DrawerLayout>
如果布局文件不够,这里是这个阶段的文件(commit c5d31ed2e6):
MainActivity
layout_main
Whole project