Вывод приведенного ниже кода
По умолчанию у андроида нет атрибута с именем rowspan, но приведенный ниже код работает нормально и создает диапазон строк.
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TableRow>
<TextView
android:text="Hello"
android:textSize="30dp"
/>
<TextView
android:text="Hello World"
android:textSize="30dp"
android:background="@drawable/border"
/>
<Button android:text="Click me"
android:textSize="30dp"/>
</TableRow>
<TableRow>
<TextView
android:text="Hello"
android:textSize="30dp"
/>
<Button android:text="Click"
android:textSize="30dp"
android:layout_column="2"/>
</TableRow>
<TableRow>
<TextView
android:text="Hello"
android:textSize="30dp"
/>
<TextView
android:text="Hello"
android:textSize="30dp"
/>
<Button android:text="Click me"
android:textSize="30dp"/>
</TableRow>
<TableRow>
<TableLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_span="2">
<TableRow>
<Button android:text="1"/>
<Button android:text="2"/>
</TableRow>
<TableRow>
<Button android:text="3"/>
<Button android:text="4"/>
</TableRow>
</TableLayout>
<Button
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="Enter"
android:background="#ff0099"/>
</TableRow>
</TableLayout>