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

layout_weight属性图解

时间:2016-01-09 11:05:13      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

本文是看了鸿洋视频后的小结:

layout_height的作用:

首先按照声明的尺寸分配,剩余的空间再按照layout_weight进行分配

一平均分配:

技术分享
代码:

<?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:gravity="center"
    android:orientation="horizontal">

    <TextView
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1"
        android:background="#e1d611"
        android:gravity="center"
        android:text="我是老大我是老大我是老大"
        android:textColor="#ffffff"
        android:visibility="gone" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1"
        android:background="#09c0f2"
        android:gravity="center"
        android:text="我是老二"
        android:textColor="#ffffff" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1"
        android:background="#074bc1"
        android:gravity="center"
        android:text="我是老三"
        android:textColor="#ffffff"
        android:visibility="gone" />

</LinearLayout>

二平均且对齐:

技术分享
在父控件里添加代码:

  android:baselineAligned="false"

三单个分配比例:

技术分享
在父控件里添加

android:weightSum="2"

代码:

<?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:baselineAligned="false"
    android:gravity="center"
    android:orientation="horizontal"
    android:weightSum="2">

    <TextView
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1"
        android:background="#09c0f2"
        android:gravity="center"
        android:text="我是老二"
        android:textColor="#ffffff" />

</LinearLayout>

layout_weight属性图解

标签:

原文地址:http://blog.csdn.net/pengkv/article/details/50487072

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