您好我正在尝试在我的Android应用中实现滑动抽屉覆盖。我从这个链接中提到了参考:
https://github.com/SimonVT/android-menudrawer
并在我的活动中实现了一个菜单抽屉。所以我的活动在viewPager中有2个片段,带有TitlePageIndicator。当我单击片段中的按钮时,菜单抽屉将打开。目前抽屉也覆盖了titlePageIndicator。我想知道实现一个菜单抽屉,它打开/覆盖在viewPager的标题下面。或者类似的东西不可能?谢谢你的帮助!
答案 0 :(得分:0)
你可以在xml下面使用,你应该在你的标题栏下面定义一个布局并为它设置:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.mhp.chek"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- main layout -->
<LinearLayout
android:id="@+id/base_layout"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_gravity="end"
android:orientation="vertical" >
<!-- for example your **viewpager** can define here -->
</LinearLayout>
<!-- drawer layout-->
<LinearLayout
android:id="@+id/drawer"
android:layout_width="300dp"
android:layout_height="fill_parent"
android:layout_gravity="end"
android:orientation="vertical" >
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
请注意,您需要支持此库。