如何获得一个视图,将自己定位在TableLayout行的左,右和中心位置。还是线性布局?感谢
答案 0 :(得分:0)
你可以使用android:gravity属性来设置你想要的对齐方式。
<TableRow android:gravity="center">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:gravity="center">
在处理TableLayout时,如果希望所有表格列自动适合,请查找streachColoum属性并将其设为*
我希望这应该有用。