美文网首页工作生活
Android基础——常见布局之线性布局

Android基础——常见布局之线性布局

作者: 软件分享域 | 来源:发表于2019-07-02 02:48 被阅读0次

    1、线性布局 LinearLayout

    属性:

    android:layout_width="宽度参数";

    android:layout_height="高度参数";

    /***

    宽度参数1 match_parent【填充父窗体】

    宽度参数1 wrap_content【包裹自身内容】

    android:orientation="vertical";

    //控件排列方向——垂直【orientation意为:朝向】

    android:orientation="horizontal";

    //控件排列方向——水平

    android:layout_weight="1";

    //布局权重比例

    */

    android:text="显示文本内容";

    //控件文本显示【文本控件适用】

    重要参数 【朝向orientation="vertical 或horizontal"    】

    layout_weight="1";【权重,控制控件在父窗体里面显示的比例】

    “可利用权重属性制作一个计算器”

    相关文章

      网友评论

        本文标题:Android基础——常见布局之线性布局

        本文链接:https://www.haomeiwen.com/subject/ajcacctx.html