欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

Android Toolbar实现标题居中显示的方法

程序员文章站 2022-03-01 12:42:44
...

最近公司一项目、使用到了Toolbar、但是后来发现Toolbar默认的标题的位置是靠左的、而我想要的是居中的、在看了源代码之后在网上找了一下资料、最后找到了方法、发现Toolbar的父类是ViewGroup、只需把Toolbar默认的title设置为空、这里我是使用代码去设置的、然后在Toolbar里加上一个TextView就可以实现想要的想过


布局activity_main.xml代码如下

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <android.support.v7.widget.Toolbar
        android:id="@ id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#0066ff"
        android:minHeight="?attr/actionBarSize" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_gravity="center"
            android:text="www.dastorm.com"
            android:textColor="@android:color/white"
            android:textSize="20sp"
            android:textStyle="bold" />
    </android.support.v7.widget.Toolbar>

</RelativeLayout>


Activity中的代码很简单、Activity继承android.support.v7.app.AppCompatActivity类、把Toolbar的title设置为空、并把Toolbar 设置到ActionBar上就行了


实现代码如下

mToolbar = (Toolbar) findViewById(R.id.toolbar);
mToolbar.setTitle("");
setSupportActionBar(mToolbar);


通过以上方法就可以实现Toolbar居中了、如果想把title的内容换成一张图片的话、只需要把TextView换成ImageView即可