Xamarin Android右导航抽屉 - 唯一正确

时间:2017-05-29 18:38:09

标签: android xamarin xamarin.android navigation-drawer

This tutorial重点介绍如何使用支持库v7中的操作栏抽屉切换器与左侧导航抽屉结合使用右侧导航抽屉。

我只想要右导航抽屉 怎么样?

右侧的菜单图标?没有离开

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以像这样设置一个ListView:

Code

属性: <android.support.v4.widget.DrawerLayout 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 Left navigation drawer --> <!--<ListView --> <!--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:background="#111"/>--> <!-- The Right navigation drawer --> <ListView android:id="@+id/right_drawer" android:layout_width="240dp" android:layout_height="match_parent" android:layout_gravity="right" android:choiceMode="singleChoice" android:divider="#E2E2E2" android:dividerHeight="1dp" android:background="#9E9E9E"/> </android.support.v4.widget.DrawerLayout> 表示从右侧加载,将其设置为android:layout_gravity="right"。您可以按Left Navigation Drawer调整菜单图标的位置。

如果您需要更多详细信息,可以查看this