我在这里有一个DrawerLayout,它在API 21及更高版本上运行完美,但是当我在KitKat和更低版本时,“buttonMenu”没有显示。 “buttonMenu”允许用户打开和关闭抽屉。
感谢您的帮助。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Map">
<FrameLayout android:id="@+id/container" android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/buttonMenu"
android:layout_alignParentTop="true"
android:background="@drawable/ic_menu_black_48dp"
android:backgroundTint="#48BF57"
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:layout_marginBottom="@dimen/activity_vertical_margin" />
</FrameLayout>
<fragment android:id="@+id/navigation_drawer"
android:layout_width="@dimen/navigation_drawer_width" android:layout_height="match_parent"
android:layout_gravity="start" android:name="com.app.app.NavigationDrawerFragment"
tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>