我想知道为什么当我在最左边添加主页图标时,我的工具栏标题不居中。如果我删除此图标,它将完全居中。但是,如果工具栏中有一个图标,则标题总是略微向右移动。
我使用
以编程方式将图标添加到工具栏 getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
我的工具栏TextView
(标题)就在这里:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tool_bar_test"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FF86B39A"
android:fitsSystemWindows="true"
app:contentInsetLeft="5dp"
app:contentInsetStart="5dp">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Test"
android:textColor="#ffffff"
android:textSize="25sp"
android:textStyle="bold" />
</android.support.v7.widget.Toolbar>
...
为什么会发生这种情况?看起来TextView从图标的宽度向中心向右移动。总的来说,在工具栏中我的目标是在左侧有一个图标,中间标题完全。
感谢任何帮助
答案 0 :(得分:0)
使用重力中心
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
android:background="@color/primaryColor"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
>
<TextView
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="itleT"
android:textColor="@color/white"
android:textSize="25sp"
android:textStyle="bold"/>
</android.support.v7.widget.Toolbar>