<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 в оба ... Я растягиваю второй столбец ... но, когда я устанавливаю длинный текст в обоих TextView, таблица растягиваетсяпредел телефона, так что я не могу видеть это .. это то же самое, если я установил макет таблицы с помощью android:layout_width="fill_parent"
.. что мне делать?