我试图让ellipsize为TextView中的单行文本工作。我已经在之前的问题下尝试了所有的解决方法(例如scrollHorizontally,singleLine,lines等),但似乎没有任何事情发生。这是我的代码(在HTC One M8(5.0.1)上测试):
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@drawable/file_tile_background" >
<ImageView
android:id="@+id/file_tile_imageview"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="24dp"
android:src="@drawable/ic_insert_drive_file_black"
android:contentDescription="@string/file_tile_imageview_description" />
<TextView
android:id="@+id/file_tile_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/file_tile_imageview"
android:text="@string/file_tile_textview_fileName"
android:maxLines="1"
android:ellipsize="start"
android:textSize="16sp" />
</RelativeLayout>
编辑:也许我不想将此布局包含在activity_main.xml中并且不直接使用它?
答案 0 :(得分:1)
简单的解决方案是使用android:singleLine="true"
。
您可以在以下链接中找到相关解决方案。