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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了寒假学干货之------LinearLayout.layout.weight相关的知识,希望对你有一定的参考价值。

所有原始代码由这个大神写的--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的主要内容,如果未能解决你的问题,请参考以下文章

寒假学干货之------android开发环境

寒假学干货之------ 初学者关于fragment_main(碎片的困扰)

一起学Android之Layout

寒假作业之总结

2020寒假训练记录

#yyds干货盘点#看动画学算法之:hashtable