Android中的TableLayout布局

表格布局的风格跟HTML中的表格比较接近,只是所采用的标签不同。
  是顶级元素,说明采用的是表格布局
 定义一个行

 定义一个单元格的内容

在string.xml中的内容


姓名
性别
年龄
电话


张三
25
1234567
李四
24
7654321

在main.xml中的内容


android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*"
>



android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/gender"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/age"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/phonenumber"
/>




android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nameZs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/genderZs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ageZs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/phonenumberZs"
/>




android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nameLs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/genderLs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ageLs"
/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/phonenumberLs"
/>




效果:

你可能感兴趣的:(Android中的TableLayout布局)