I want to place that icon left to right side.
Just want to know where should I change code?
Asked
Active
Viewed 2,482 times
0

Zin Win Htet
- 2,448
- 4
- 32
- 54
-
try this code:http://stackoverflow.com/questions/17792237/slide-expandablelistview-at-drawerlayout-form-right-to-left/17792254#17792254 – prakash Sep 11 '14 at 08:19
1 Answers
1
In your XML layout file, make the gravity of your drawer Gravity: right or Gravity end instead of Gravity:start
example
<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"
/>

ZInj
- 341
- 2
- 9
-
1I didn't mean the listview. The list view (drawer) is already coming form right. I want to know is the menu icon. It still staying at right side even though the drawer come from right. – Zin Win Htet Sep 11 '14 at 09:54
-
Okay you will have to define a custom view for the action bar. See this article http://stackoverflow.com/questions/17838955/set-actionbar-home-button-to-right-side – ZInj Sep 12 '14 at 04:01