首页 > 代码库 > 使用weight属性实现视图的居中显示
使用weight属性实现视图的居中显示
有的时候我们开发一个产品的时候需要让其中某个控件的宽度或高度占据其父容器的宽度或高度的一半显示,这个时候由于设备尺寸的限制,做到在每个设备上都具有同样的效果的话,我们就需要用到weightSum属性和layout_weight属性。
具体的实现过程分析如下:
首先为父容器指定一个weightSum,然后为其子控件的layout_weight属性值设为weightSum的一半,这个时候,就实现了占据其一半的效果。
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="fill_parent" 3 android:layout_height="fill_parent" 4 android:background="#ffffff" 5 android:gravity="center" 6 android:orientation="horizontal" 7 android:weightSum="1" > 8 9 <Button10 android:layout_width="0dp"11 android:layout_height="wrap_content"12 android:layout_weight="0.5"13 android:text="@string/activity_main_click_me" />14 15 </LinearLayout>
使用weight属性实现视图的居中显示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。