标签:
1.简介
TableLayout为表格框架结构
2.xml配置
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*">
.........
</TableLayout>
注意:
1.控件充满全局:android:stretchColumns="*",该属性值写在TableLayout中。
标签:
原文地址:http://www.cnblogs.com/jfl-xx/p/5560784.html