У меня есть макет таблицы:
<TABLELAYOUT xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TABLEROW>
<TEXTVIEW
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1">
<TEXTVIEW
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2">
<TEXTVIEW
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3">
<TEXTVIEW
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="4">
...
<!--there are 10 columns-->
...
</TABLEROW>
</TABLELAYOUT>
В этой таблице есть 10 столбцов.
Мой вопрос:
как настроить каждую ширину столбца , чтобы на экране отображались только 4 столбцы ??
как установить высоту строки?