LinearLayout里面TableLayout整体居中

来源:互联网 发布:剑灵灵族男捏脸数据图 编辑:程序博客网 时间:2024/05/29 03:02

有两种方法

方法一:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/mai"
  android:gravity="center"       //关键的一句
      >
<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:stretchColumns="1" 
    android:orientation="vertical"
    android:gravity="center"
   >


    <TableRow>。。。。。。。



方法二:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/mai"
  
      >
<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:stretchColumns="1" 
    android:orientation="vertical"
    android:gravity="center"
    android:layout_weight="1">


    <TableRow>

0 0