码迷,mamicode.com
首页 > 其他好文 > 详细

Layout_weight

时间:2015-10-21 21:06:46      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:

首先按照控件的的尺寸进行分配,然后剩下的空间在按照weight的比例进行分配

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="111111111111111" 
        android:layout_weight="1"
        android:background="#ff3311"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="2" 
        android:layout_weight="2"
        android:background="#2255dd"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="3" 
        android:layout_weight="3"
        android:background="#ff6611"/>

</LinearLayout>

技术分享

首先会按照控件本身分配,分配好tv1,然后按权重分配tv2和他tv3

如果要想让一个控件占一行的一半怎么办?这时候我们要在layout里加一个weightSum=2

然后让那个控件的weight=1,就可以了

Layout_weight

标签:

原文地址:http://www.cnblogs.com/84126858jmz/p/4898934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!