首先,我做了一個Google搜索,看着 StackOverFlow與TextView
中的文本被切斷相關的問題。他們沒有幫助解決手頭的問題,儘管他們提供了對某些事情更好的理解。Table行內的TextView內容被切斷
這是我的問題。
我使用TableLayout
來顯示帶有兩個文本字段的記錄。每行有兩個TextView
單元格。對於所有單元,layout_width
設置爲wrap_content
。但是,即使文本以多行顯示,該多行文本中的每一行都會在最後切斷。
例如
<?xml version="1.0" encoding="utf-8"?>
</TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content">
<TableRow>
<TextView
android:text="Notes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/visitation_notes" />
<TextView
android:text="Need to visit again. Visit till the doctor understands the importance of the Test. The problem is, it is very difficult to get appointment for the visit. Still, we need to keep trying till the point reaches to him/her."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/visitation_notes_value"
android:textAlignment="viewStart"/>
</TableRow>
</TableLayout>
產生的視圖
Notes.Need再次訪問。訪問直到醫生和erstands 測試的重要性。問題是,它是非常困難的 到得到預約訪問。仍然,我們需要d繼續嘗試 直到點到他/她。
與黑體書寫越來越文本切斷。
如果我用LinearLayout
代替TableLayout
,它工作正常。但是,問題是我不能在同一位置開始每行的第二列(沒有硬編碼)。
請幫助我如何確保TextView
的內容不會被切斷。
這裏是例如上面給出的screenshot視圖。
附加屏幕截圖 – Rahul
我已經附上截圖了。請立即檢查。 –
什麼是TableRow的寬度和高度?我試過你的代碼,它對我的工作很好 – Rahul