抱歉,我找不到更好的头衔。
我有一个XML
,DrawerLayout
就像这样:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Frame layout for fragment -->
<FrameLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/Fragment_Container" />
<!-- Need a button visible here that moves left and right with the drawer -->
<!-- This is a right side drawer-->
<LinearLayout
android:orientation="vertical"
android:layout_gravity="right"
android:gravity="center_vertical"
android:layout_width="101dp"
android:layout_height="match_parent">
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
我希望屏幕上始终显示一个按钮,单击此按钮可打开/关闭DrawerLayout
,因此它应与抽屉同步移动。
我已经尝试将它放在抽屉里并将其偏移到左侧,但它只是它的内容的一部分。
我现在正在考虑的唯一其他选项是让它检测抽屉的移动并使其手动滑动。
奖金问题:应该显示片段的on top
,即它应该比加载的片段具有更高的z-index
。
由于