Vahid Davari
Vahid Davari

Reputation: 111

Android Actionbar change menus position

I'm trying to use android-support-v7-appcompat and my problem change menus position to right of actionbar

As you can see on the attached picture I wanna change the position of menu in action bar with custom view which is inflate of a custom layout.. hope to understand what I'm say

Change Positions

Upvotes: 11

Views: 614

Answers (2)

Janusz
Janusz

Reputation: 189584

The menu Items that are created in onCreateOptionsMenu are always the right most items. I think it is not possible to have a custom view to the right of your menu.

Upvotes: 2

keshav
keshav

Reputation: 3255

To arrange menus order change this

 android:orderInCategory="100"

Upvotes: 5

Related Questions