我是android新手,我按照本教程创建导航抽屉here
我成功导航抽屉但我不知道如何使用按钮,textview将framelayout更改为我的自定义布局....我的应用只显示菜单和空白framelayout,我该如何解决?
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="asdsadsad" />
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/purple_dark"
android:choiceMode="singleChoice"
android:divider="@android:color/darker_gray"
android:dividerHeight="0.1dp"
android:listSelector="@drawable/ic_drawer"/>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
你可以在LinearLayout而不是FrameLayout上使用RelativeLayout,你可以在其中构建整个布局
答案 1 :(得分:0)
如果您需要添加其他布局,则需要将其转换为closeDrawer
和drawerOpen
。
请参阅我的回答here