How to customize Android ActionBar to show a custom view before the tabs?

后端 未结 7 2018
孤街浪徒
孤街浪徒 2020-12-29 19:48

I\'m using a custom view for the ActionBar with Tabs. My problem is the ordering of the custom view. Android is displaying it AFTER the tabs - which I do no

7条回答
  •  渐次进展
    2020-12-29 20:27

    When you add your custom view to the ActionBar you can specify the gravity also.

    ActionBar.LayoutParams lp = new ActionBar.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);              
    lp.gravity = Gravity.LEFT;
    customView.setLayoutParams(lp);
    

提交回复
热议问题