程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> textview-android 中TextView 的限制

textview-android 中TextView 的限制

編輯:編程綜合問答
android 中TextView 的限制

我想設置 TextView 的最多行是2行,然後在行中間顯示 "..."。
我的 layout xml:

<TextView
    android:id="@+id/text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="abcdefghijklmnopqrstuvwxyz"
    android:ellipsize="middle"
    android:maxLines="2"
    android:textAppearance="?android:attr/textAppearanceLarge" />

它顯示成:

abcdefgh
ijklmnop

顯示成兩行,但是不在中間或末尾顯示"..."
如何修改?

最佳回答:


設置 android:ellipsize="end"

<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="abcdefghijklmnopqrstuvwxyz"
android:ellipsize="end" <-----change it to end
android:maxLines="2"
android:textAppearance="?android:attr/textAppearanceLarge" />
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved