TableLayout
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TableLayout相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="60dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
tools:context="com.dream.dream.MainActivity"
android:collapseColumns="0"
android:stretchColumns="1,2,3,4">
<TableRow
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<Button
android:text="按钮①"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:text="按钮②"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:text="按钮③"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:text="按钮④"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:text="按钮⑤"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
</TableRow>
</TableLayout>
以上是关于TableLayout的主要内容,如果未能解决你的问题,请参考以下文章
将 TableRow 动态添加到 TableLayout 的上方