您的位置:首页 > 移动开发 > Android开发

android layout_weight的使用

2012-12-27 19:56 288 查看
在android的布局中,有时为了适配不同的分辨率的机型,可以使用android:layout_weight这个属性。layout_weight表示所在的权重,即所描述的控件所在的百分比。

例如:

<LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_weight="1.0"

android:orientation="vertical">

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1.0"

android:Text="text"/>

<ImageView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="2.0"/>

</LinearLayout>

在上述LinearLayout布局中,layout被分成3份,TextView占其中1份(即1/3),ImageView占2份(即2/3)。

平时做一些UI布局时,可以根据实际情况使用layout_weight。
本文出自 “天外来客” 博客,请务必保留此出处http://songyuanlin.blog.51cto.com/6114055/1102446
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: