用android的ListView啊,设置listview为全屏就可以了,这样的表格在item中设置textView为1像素就可以了
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_height="match_parent"
android:layout_weight="2"
android:background="@android:color/darker_gray" >
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal" >
android:layout_height="match_parent"
android:layout_weight="3"
android:background="@android:color/background_light" >
android:layout_height="match_parent"
android:layout_weight="2" >
大概就是这个意思,你要实现的内容还是用 ListView。不知道具体需求,仅供参考
用一个listview,定住他的高和宽,获取数据直接写入listview就可以了