Android 应用始终在工具栏中显示应用名称

jue*_*n d 4 java android android-layout

我想在我的应用程序工具栏中显示特定文本,但它也总是显示应用程序的名称。我怎样才能摆脱应用程序名称和只有文本TextView

<android.support.design.widget.AppBarLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:theme="@style/AppTheme.AppBarOverlay"
    android:fitsSystemWindows="true" >

    <android.support.v7.widget.Toolbar
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        app:popupTheme="@style/AppTheme.PopupOverlay"
        android:fitsSystemWindows="true" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="The title I want to show"
            android:layout_alignParentTop="true"
            android:layout_alignParentStart="true" />

    </android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
Run Code Online (Sandbox Code Playgroud)

JTe*_*eam 6

将标签添加到 AndroidManifest.xml 文件中的活动声明。

    <activity
        ....
        android:label="Name of Your Screen"
        ....
    </activity>
Run Code Online (Sandbox Code Playgroud)