本文转自:http://blog.csdn.net/kangyaping/article/details/7400281

在网上看了一些对Layout_weight的讲解,有些说的比较片面,只列举了一种情况,然后自己通过实验和一些比较 好的文章总结了一下,特此记录下来,以备以后所用。Layout_weight是线性布局,也就是LinearLayout里面用到的,下面通过实验来看 这个Layout_weight的特性。

1.当控件的属性android:layout_width="fill_parent"时,布局文件如下:

Xml代码  

  1.  version="1.0" encoding="utf-8"?>  
  2.  xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="horizontal" android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent">  
  5.      android:layout_width="fill_parent"  
  6.         android:layout_height="wrap_content" android:layout_weight="1"  
  7.         android:text="Button1" />  
  8.      android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content" android:layout_weight="2"  
  10.         android:text="Button2" />  
  11.   

  android:orientation="horizontal"android:layout_width="fill_parent"

  android:layout_height="fill_parent">