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

后端 未结 12 2199
野性不改
野性不改 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:39

    Java code: write this in onCreate()
    getSupportActionBar().setDisplayShowCustomEnabled(true); getSupportActionBar().setCustomView(R.layout.action_bar);

    and for you custom view, simply use FrameLayout, east peasy!
    android.support.v7.widget.Toolbar is another option

    
    
    
        
    
    

提交回复
热议问题