首先,我知道这个问题以前曾出现在这里,但经过很多尝试,我仍然没有成功。我在Android Developers网站上处理示例 。
我试图将菜单设置为从右向左打开,而不是在示例中如何实现(从左向右)。另外,我想将打开的菜单按钮移到操作栏的右侧。我在这里也给出了一些答案,例如这个答案。
我尝试更改视图和布局的重力,但出现错误:
绝对重力未找到抽屉视图
您能帮我找出代码中的问题是什么,我应该更改什么才能将菜单设置为从右侧打开,并将操作栏按钮移至右侧?
xml代码在这里:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_gravity="right"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/content_frame"
android:layoutDirection="rtl"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<ListView android:id="@+id/left_drawer"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="right"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="10dp"
android:background="#111"/>
</android.support.v4.widget.DrawerLayout>