如何將Android截斷的文本轉化爲省略號?如何在TextView中獲取橢圓化文本
我有一個TextView:
<TextView
android:layout_width="120dp"
android:layout_height="wrap_content"
android:ellipsize="end"
android:singleLine="true"
android:text="Um longo texto aqui de exemplo" />
在設備上這個TextView的是這個樣子:
"Um longo texto a..."
如何獲取文本的休息嗎?
我在尋找類似getRestOfTruncate()
的東西,它會返回「qui de exemplo」。 。
我定你的問題的標題和正文。我希望我能爲你解答,但我認爲沒有辦法做到這一點。這裏的用例是什麼? –
謝謝@AustynMahoney,或許應該做些什麼來完成它,否則,我會建立一些東西,問題是它會困難得多,但是如果我在這裏發佈 – ademar111190
使用'android:text =「@ string/full_text在xml佈局中使用'',並在需要時使用java代碼中的'getString(R.string.full_text)'。 – yorkw