Android中的android:layout_weight使用详解
程序员文章站
2023-11-29 23:05:10
在使用linearlayout的时候,子控件可以设置layout_weight。layout_weight的作用是设置子空间在linearlayout的重要度(控件的大小比...
在使用linearlayout的时候,子控件可以设置layout_weight。layout_weight的作用是设置子空间在linearlayout的重要度(控件的大小比重)。layout_weight的值越低,则控件越重要。若不设置layout_weight则默认比重为0。
如果在一个linearlayout里面放置两个button,button1和button2,button1的layout_weight设置为1,button2的layout_weight设置为2,且两个button的layout_width都设置为fill_parent。
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="button1"/>
<button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="button2"/>
</linearlayout>
则button1占据屏幕宽度的三分之二,而button2占据三分之一,如下图所示:
如果两个button的layout_width都设置成wrap_content,则情况刚好相反。button1占三分之一,button2占三分之二,如下图所示:
layout_weight在使用linearlayout设计复杂的布局时还是挺有用处的,例如,在水平的线性布局中,你要分足够的空间给控件1,剩下的空间则分配给控件2,则只要设置控件1的layout_width设置为wrap_content,不用设置layout_weight,而在控件2中,设置layout_width为fill_parent,layout_weight为1即可实现。
如果在一个linearlayout里面放置两个button,button1和button2,button1的layout_weight设置为1,button2的layout_weight设置为2,且两个button的layout_width都设置为fill_parent。
复制代码 代码如下:
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="button1"/>
<button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="button2"/>
</linearlayout>
则button1占据屏幕宽度的三分之二,而button2占据三分之一,如下图所示:
如果两个button的layout_width都设置成wrap_content,则情况刚好相反。button1占三分之一,button2占三分之二,如下图所示:
layout_weight在使用linearlayout设计复杂的布局时还是挺有用处的,例如,在水平的线性布局中,你要分足够的空间给控件1,剩下的空间则分配给控件2,则只要设置控件1的layout_width设置为wrap_content,不用设置layout_weight,而在控件2中,设置layout_width为fill_parent,layout_weight为1即可实现。
推荐阅读
-
Android中父View和子view的点击事件处理问题探讨
-
Android ViewFlipper的简单使用
-
详解Android 视频播放时停止后台运行的方法
-
详解HTML5中的Communication API基本使用方法
-
详解iOS中UIView的layoutSubviews子视图布局方法使用
-
Android编程中EditText限制文字输入的方法
-
Android编程中Perferences的用法实例分析
-
Android中的SpannableString与SpannableStringBuilder详解
-
Android 完全退出的实例详解
-
android应用开发之spinner控件的简单使用