layout_weight在布局文件中经常使用,所有的视图都有一个layout_weight值,
默认为零,意思是需要显示多大的视图就占据多大的屏幕空间。若赋一个高于零的
值,则将父视图中的可用空间分割,分割大小具体取决于每一个视图layout_weight
值。
如果第一个控件值为1,第二个控件值为2,则第一个控件占据本行的1/3,第
二个占据2/3。这个比较好理解,就不举例子了。下面的例子说明只有一个控件值不
为0的时候,与layout_width的区别。
布局文件代码如下:
<?xml version=”1.0″ encoding=”utf-8″?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:background=”@color/light_blue”
android:orientation=”horizontal” >
<ImageView
android:id=”@+id/headIcon”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:layout_marginLeft=”8dip”
android:layout_marginRight=”4dip”
android:layout_gravity=”center_vertical”
android:contentDescription=”@string/app_name”
android:src=”@drawable/biz_navigation_tab_news_pressed” />
<ImageView
android:id=”@+id/headDivider”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:layout_marginLeft=”4dip”
android:layout_marginRight=”4dip”
android:layout_gravity=”center_vertical”
android:contentDescription=”@string/app_name”
android:src=”@drawable/base_action_bar_back_divider” />
<TextView
android:id=”@+id/headTv”
android:layout_width=”wap_content”
android:layout_height=”wrap_content”
android:layout_gravity=”center_vertical”
android:text=”csdn资讯”
android:layout_marginLeft=”4dip”
android:textSize=”21sp”
android:textStyle=”bold”
android:textColor=”@color/white”
/>
</LinearLayout>
显示效果如下:
此时,TextView占据的大小即为包裹内容。
如果将TextView修改为:
<TextView
android:id=”@+id/headTv”
android:layout_width=”0dip”
android:layout_weight=”1″
android:layout_height=”wrap_content”
android:layout_gravity=”center_vertical”
android:text=”csdn资讯”
android:layout_marginLeft=”4dip”
android:textSize=”21sp”
android:textStyle=”bold”
android:textColor=”@color/white”
/>
textview就占据了剩下的所有空间。
今天的文章layout_weight详解分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/13162.html