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

寒假学干货之------LinearLayout.layout.weight

时间:2016-02-16 23:26:35      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

所有原始代码由这个大神写的--http://www.cnblogs.com/zhangs1986/archive/2013/01/17/2864237.html

layout/activity_main下

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.myprogram.text_two.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="2"//这里是2 下面效果图
        android:orientation="horizontal">
        
        <Button...
<Button... <Button...
<Button... </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"//这里是1 android:orientation="vertical" > <Button... <Button... <Button... <Button... </LinearLayout> </LinearLayout>

技术分享

接下来我们,在上面的weight赋值1,下面的赋值2

技术分享

可以看见,第一种是2:1显示的1:2,是相反的。

寒假学干货之------LinearLayout.layout.weight

标签:

原文地址:http://www.cnblogs.com/mrAAron/p/5193923.html

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