android studio中没有全宽工具栏?

时间:2017-03-17 02:48:19

标签: android xml android-layout textview toolbar

我在我的应用程序中使用工具栏,我将TextView自定义到工具栏的中心,但它不是工具栏屏幕的全宽,并在左侧保留一个小屏幕,如下图所示。那么如何才能将自定义TextView设置为屏幕中心和工具栏?

我当前的屏幕问题:

enter image description here

我想要的屏幕:

enter image description here

<?xml version="1.0" encoding="utf-8"?>
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@color/colorPrimary"
        app:theme="@style/ThemeOverlay.AppCompat.Dark"
        xmlns:app="http://schemas.android.com/apk/res-auto">
        <TextView
            android:id="@+id/tv_title"
            android:textColor="#FFF"
            android:background="#F00"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="TITLE"
            android:textStyle="bold"
            android:textSize="15sp"
            android:gravity="center"/>
    </android.support.v7.widget.Toolbar>

感谢!

1 个答案:

答案 0 :(得分:2)

ToolBar添加以下属性中删除左边距。

 app:contentInsetLeft="0dp"
 app:contentInsetStart="0dp"