我正在操作栏中开发slide menu
。
我从GitHub下载了幻灯片菜单源代码,但我无法更改操作栏图标的位置。
操作栏位于left
,我想将其放在right.
您如何建议我改变*action bar icon(ex.arrow icom)*
?
答案 0 :(得分:0)
您需要从右侧打开幻灯片菜单
然后你应该在你的代码中做这样的事情:
<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">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer, setting gravity to "end" means "right" but preferabbly use "end"-->
<ListView android:id="@+id/right_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="end"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#111"/>
当您像这样更改xml时,我认为您的滑动菜单将从右侧打开/关闭
由于