我是 android 新手,正在使用导航抽屉开发一个练习应用程序。我想让主视图成为一个带有 3 个选项卡的寻呼机,并且当用户从左向右滑动时可以显示一个导航抽屉。
这是我的Main.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="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_layout"
tools:context=".ExampleMain" >
<!--
Main Content place holder
-->
<FrameLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<!--
Left Drawer main style
-->
<ListView
style="@style/HighlightColor"
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
/>
</android.support.v4.widget.DrawerLayout>
其中<Framelayout>
应该包含我在另一个 xml Main_Content.xml中定义的实际主视图
<andriod.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_content_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
我不确定如何将Main_Content.xmlViewpager
放入Main.xml的部分。请提供一些示例代码或一些指针。谢谢<FrameLayout>