Android布局(RelativeLayout、TableLayout等)使用方法

  

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical">

  

  android:layout_width="match_parent"

  android:layout_height="150dp"

  android:orientation="vertical">

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="垂直1" />

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="垂直2" />

  

  

  android:layout_width="match_parent"

  android:layout_height="100dp"

  android:orientation="horizontal">

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="水平1" />

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="水平2" />

  

  

  android:layout_width="match_parent"

  android:layout_height="150dp"

  android:orientation="horizontal">

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_gravity="top"

  android:text="水平上对齐" />

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_gravity="center_vertical"

  android:text="水平垂直居中" />

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_gravity="bottom"

  android:text="水平下对齐" />

  

  

  android:layout_width="match_parent"

  android:layout_height="100dp"

  android:orientation="horizontal">

  

  android:layout_width="0dp"

  android:layout_height="wrap_content"

  android:layout_weight="3"

  android:hint="请输入..."/>

  

  android:layout_width="0dp"

  android:layout_height="wrap_content"

  android:layout_weight="2"

  android:text="提交" />

  

  

  android:layout_width="match_parent"

  android:layout_height="100dp"

  android:orientation="horizontal">

  

  android:layout_width="0dp"

  android:layout_height="wrap_content"

  android:layout_weight="1"

  android:hint="请输入..."/>

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="提交" />