Android设置Toolbar的标题居中

最近需要做一个界面,看了下需求,觉得可以使用Toolbar来做。但是后来发现Toolbar默认的标题的位置是靠左的,而我想要的是居中的。经过搜索在Stack Overflow上找到了答案。

Toolbar的父类是ViewGroup,我们只需把Toolbar默认的title设置为空,并在Toolbar里加上一个TextView就可以实现想要的想过。

布局activity_main.xml代码如下:

xmlns:tools=”http://schemas.android.com/tools”
android:layout_width=”match_parent”
android:layout_height=”match_parent” >

android:id=”@+id/toolbar”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:background=”#0066ff”
android:minHeight=”?attr/actionBarSize” >

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” />

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

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

效果图如下:

图1

 

图2

图1是默认状态的Toolbar,title的位置是左对齐的,图2是使用TextView取代了Toolbar的默认的title,可以看到“title”的位置居中了。

你可能感兴趣的:(Android,UI)