android 怎么让toolbar上面的title居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 怎么让toolbar上面的title居中相关的知识,希望对你有一定的参考价值。
参考技术A 自带的settitle是居左的,可以自定义一个textview,如下方式:android自带的toolbar有设置title的功能,但是设置的title都是居左的,但是很多需求都是要title居中,主要的方法就是:不使用setTitle,而是在toolBar的xml定义中插入一个TextView,然后设置其layout_gravity为center,它就在正中间了。。
1、定义toolbar的xml文件
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@color/primary">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="20sp" />
</android.support.v7.widget.Toolbar>
12345678910111213141516171234567891011121314151617
具体代码中使用toolbar
public Toolbar initToolbar(int id, int titleId, int titleString)
Toolbar toolbar = (Toolbar) findViewById(id);
// toolbar.setTitle("");
TextView textView = (TextView) findViewById(titleId);
textView.setText(titleString);
setSupportActionBar(toolbar);
android.support.v7.app.ActionBar actionBar = getSupportActionBar();
if (actionBar != null)
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);
return toolbar;
本回答被提问者采纳 参考技术B 在toolbar里嵌套一个RelativeLayout或LinearLayout,把title放在里面再居中,,
Toolbar标题居中
问题:
没有用toolbar本身的title来设置标题,而是自定义了一个布局文件,但是title怎么都不居中,有一些偏差,后来发现toolbar的左边有偏移。
解决办法:
toolbar中有一个属性contentInsetStart是用来设置左边偏移的,将偏移设置为0.
<android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="48dp" app:layout_collapseMode="pin" app:contentInsetStart="0dp" android:background="@color/main_color">
以上是关于android 怎么让toolbar上面的title居中的主要内容,如果未能解决你的问题,请参考以下文章