TextView 遇到的相關問題及解決方法

這篇文章是關於TextView的相關問題,每次遇到相關的問題都會總結到此~~~會不斷更新的

Question : 一句話中的部分字體顯示不同的顏色
Way :view.setText(Html.fromHtml(你好!+"<font color='grey'>"+歡迎光臨+"</font>"));
這裏寫圖片描述

Question : 超過6個字用省略號
Way :

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:maxEms="6"
        android:singleLine="true"
        android:text="超過6個字用省略號"
        android:layout_gravity="center"
        android:textSize="30dp" />
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章