如何在Android中的工具栏内将TextView层叠在另一个TextView上?

时间:2015-06-15 18:23:32

标签: android textview android-toolbar

我正在尝试将一个TextView放在另一个上面,但它最终会将TextView放在另一个旁边。

这是我的代码:

   
<Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="wrap_content"
    android:id="@+id/toolbar" android:background="?android:attr/colorPrimary"
    android:minHeight="?android:attr/actionBarSize" android:title="@string/blankTitle"
    android:fitsSystemWindows="true">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Upper Text"
        android:layout_gravity="center_horizontal"
        android:id="@+id/title"
        android:textColor="@android:color/white"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Lower Text"
        android:layout_gravity="center_horizontal"
        android:id="@+id/subtitle"
        android:textColor="@android:color/white"
        android:textSize="12sp"/>

    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/queue"
        android:layout_gravity="end"
        android:layout_marginEnd="16dp"/>

</Toolbar>

0 个答案:

没有答案