Android:TextView maxWidth maxLines maxLength maxEms

koro發表於2020-09-23

TextView maxWidth、maxLines、maxLength、maxEms 的區別面紗就此揭開!掌握它們的區別對實際開發蠻有用處。若您有遇到其它相關問題。


maxWidth

限制當前view的寬度,若此時高度設定為wrap_content,文字長度超過view的寬度時會自動換行

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="TextView_maxWidth"
        android:maxWidth="50dp"/>


maxLines

無論文字整體需要幾行才可顯示,最終只顯示 N 行。一般配合ellipsize標籤使用,它可指定在尾部新增省略號

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="TextView_maxWidthTextView_maxWidthTextView_maxWidth"
        android:ellipsize="end"
        android:maxLines="1"/>


maxLength

限制可顯示字元數量,超出部分會被截斷,設定 ellipsize 也無效,字母或漢字每個單位均記做1,

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="TextView_maxWidth"
        android:ellipsize="end"
        android:maxLength="5"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="測試這個標籤的作用"
        android:ellipsize="end"
        android:maxLength="5"/>


maxEms

單行最多可現實的字元數量,超出限制自動換行,漢字記做2個單位,字母記做1個單位

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="TextView_maxWidth"
        android:maxEms="5"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#3E86A0"
        android:textColor="#ffffff"
        android:text="測試這個標籤的作用"
        android:maxLines="1" // 這裡設定了行數限制,所以下圖中的文字被擷取
        android:maxEms="5"/>


若您有遇到其它相關問題,非常歡迎在評論中留言。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69984284/viewspace-2723387/,如需轉載,請註明出處,否則將追究法律責任。

相關文章