我正在尝试将工具栏中的textview设置为单线,但是即使在添加单行和Ellipsize之后,文本也会出现在工具栏中的图标上。我没有得到三个点。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<RelativeLayout
android:id="@+id/relativeLayoutID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="left"
android:text="Welcome back!"
android:textColor="@color/whiteText"
android:singleLine="true"
android:ellipsize="end"
android:textSize="@dimen/text_size_large" />
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:spinnerMode="dropdown"
style="@style/MyDarkToolbarStyle"
android:visibility="gone" />
<ImageView
android:id="@+id/keyIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="right|center"
android:layout_toLeftOf="@+id/alert"
android:contentDescription="@string/logo"
android:layout_marginRight="15dp"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/key" />
<ImageView
android:id="@+id/alert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="right|center"
android:contentDescription="@string/logo"
android:layout_toLeftOf="@+id/home"
android:layout_marginRight="15dp"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/bell" />
<ImageView
android:id="@+id/home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="right|center"
android:contentDescription="@string/logo"
android:layout_toLeftOf="@+id/logo"
android:layout_marginRight="15dp"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/tool" />
<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_gravity="right|center"
android:contentDescription="@string/logo"
android:paddingRight="5dp"
android:background="?android:attr/selectableItemBackground"
android:src="@drawable/rupees" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
我不确定为什么会这样?