How to align title at center of ActionBar in default theme(Theme.Holo.Light)

后端 未结 12 2118
野性不改
野性不改 2020-11-27 12:08

I searched a lot but can not find a way, How can I set then title at center of ActionBar instead of left aligned. I used below code to set the title at center :



        
12条回答
  •  自闭症患者
    2020-11-27 12:41

    This actually works:

     getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
     getActionBar().setCustomView(R.layout.custom_actionbar);
      ActionBar.LayoutParams p = new ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
            p.gravity = Gravity.CENTER;
    

    You have to define custom_actionbar.xml layout which is as per your requirement e.g. :

    
    
    
        
    
    

提交回复
热议问题