概述
开发时遇到一个问题,在一个线性布局里,有一部分组件是固定宽度的,线性布局剩余的宽度则由剩余的组件按比例划分
使用layout_weight 可以完美的实现想要的效果,(该方法还可以用来实现现象布局按比例的分割线)
<LinearLayout
android:layout_width="match_parent"android:layout_height="67dp"
android:layout_marginTop="68dp"
android:background="@drawable/fillbox" >
<EditText
style="@style/Login.EditText"
android:layout_width="0dp"
android:layout_weight="1"
android:text="13459684257"
android:background="#ff0000"
android:textSize="@dimen/water_rate_edit_text_size"
android:textStyle="bold" />
<EditText
style="@style/Login.EditText"
android:layout_width="0dp"
android:background="#0000ff"
android:layout_weight="1"
android:text="134"
android:textSize="@dimen/water_rate_edit_text_size"
android:textStyle="bold" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|right"
android:background="@drawable/contact_button_s"
/>
</LinearLayout>
效果图
右边的按钮占用固定的宽度,左边的两个EditText平均分配剩余的宽度
如果需要两个EditText暂用不同的比例,只要修改相应的 layout_weight即可
比如 需要红色占3分之2,蓝色的占3分之1
就将红色的 layout_weight 改为 2,
蓝色的 layout_weight 改为 1
效果如图
当然,有必要提醒一下,需要在宽度或则高度上按比例划分,那么其对应的布局尺寸,即
layout_width 或者 layout_height 要设为 0dp
否则就得不到想要的效果
OK,就说这么多,休息一下
最后
以上就是淡定中心为你收集整理的LinearLayout layout_weight属性的妙用的全部内容,希望文章能够帮你解决LinearLayout layout_weight属性的妙用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复