0

我想将该图标从左到右放置。只是想知道我应该在哪里更改代码?在此处输入图像描述

4

1 回答 1

1

在您的 XML 布局文件中,使抽屉的重力 Gravity: right 或 Gravity end 而不是 Gravity:start

例子

<ListView
    android:id="@+id/drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="end" //or you can use right also. 
    android:choiceMode="singleChoice"

  />
于 2014-09-11T08:33:52.893 回答