<TableLayout android:layout_width="match_parent" android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:stretchColumns="1">
<TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TextView android:text="my name is Tarzan and i lives in Amazon Jungle. I want an android phone." android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<TextView android:text="my name is Mowgly and i lives in Amazon Jungle. I want an android phone." android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</TableRow>
我有一个有两列的表格,我把TextViews放在两个...我伸展第二列..但是,当我在两个TextViews中设置长文本时,表格超出了手机的限制所以我不能看到..如果我用android:layout_width="fill_parent"
设置表格布局就一样了..我该怎么办?
答案 0 :(得分:0)
android:maxWidth="100dip"
..在textView中添加这样的标记..