3
我用TableLayout和TableRow創建了一個包含兩個TextView的簡單佈局。這是代碼的一部分。不顯示全文的Textview
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0">
<TableRow android:id="@+id/myTableRow">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Short description"/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Large description"/>
</TableRow>
問題是,如果在TextView1中有長文本,則不顯示全文。我如何在TextView1中顯示全文?
你想顯示文本的多行和換行? –
如果文本很長,是的,我想顯示多行 – user3289078
然後看到http://stackoverflow.com/questions/4851659/how-to-wrap-text-in-textview-in-android –