Android工具栏TextView match_parent比屏幕大

时间:2017-07-24 09:12:51

标签: android layout center toolbar

我有一个带有match_parent内部TextView的工具栏,可以将文本居中,但每次我这样做时,它都会比屏幕更大并隐藏文字。

在这里您可以捕获它

enter image description here

预览中的效果如何

enter image description here

最后我如何实现它:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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:fitsSystemWindows="true"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:layout_editor_absoluteY="0dp"
        tools:layout_editor_absoluteX="8dp">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:theme="@style/ToolBarStyle" >

            <TextView
                android:id="@+id/toolbar_title"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:gravity="center"
                android:text="@string/title_activity_anuncios" />

        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </android.support.constraint.ConstraintLayout>

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

检查您的主题风格或从清单

设置活动主题
 android:theme="@android:style/Theme.Translucent.NoTitleBar" 

如果活动主题正确,那么您可以检查您的活动&gt;&gt; onCreate方法。

   ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.setTitle("Your Title");
    } 

答案 1 :(得分:0)

将它放在工具栏中

app:contentInsetStart="0dp"