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

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

    Check out new Tool bar on support library class in Lollipop update you can design actionbar by adding toolbar in your layout

    add these items in your app theme

     true
     false
    

    Create your toolbar in a layout and include your textview in center design your toolbar

    
    
        
    
            
    
        
    
    
    

    add your action bar as tool bar

    toolbar = (Toolbar) findViewById(R.id.toolbar);
    if (toolbar != null) {
        setSupportActionBar(toolbar);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    }
    

    please ensure that you need to include toolbar on your resource file like this

    
    
    
        
    
        
    
            
            
    
                
    
            
    
            
    
        
    
    
    

提交回复
热议问题