zoukankan      html  css  js  c++  java
  • LinearLayout


    概念:
    LinearLayout是一种线性布局,他会将控件在水平和垂直方向做线性排列

    官方文档:


    继承关系:


    常用属性:
    android:orientation:可以设置布局的方向
    android:gravity:用来控制组件的对齐方式
    layout_weight:控制各个组件在布局中的相对大小  同一线性上当前控件所占比例长度



    样例一:


    代码
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">


    <EditText
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:id="@+id/editText2"
    android:layout_weight="4" />

    <Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="send"
    android:id="@+id/btn_send"
    android:layout_weight="1" />
    </LinearLayout>
    android:layout_width="0dp"  使得宽度不依赖于layout_width
    当前同一水平线上有2个控件  所以layout_weight = 4 表示其宽度占屏幕宽度的4/5


    案例二:


    LinearLayout嵌套


    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <LinearLayout
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:baselineAligned="false"
    android:layout_weight="1" >

    <LinearLayout
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1">
    <TextView
    android:text="green"
    android:textColor="#ff0000"
    android:background="#00aa00"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
    <TextView
    android:text="blue"
    android:background="#0000aa"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
    </LinearLayout>
    <LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1">
    <TextView
    android:text="black"
    android:background="#000000"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
    <TextView
    android:text="yellow"
    android:background="#aaaa00"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
    <TextView
    android:text="unknown"
    android:background="#00aaaa"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"/>
    </LinearLayout>
    </LinearLayout>
    <LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="2">
    <TextView
    android:text="color_red"
    android:gravity="fill_vertical"
    android:background="#aa0000"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="2"/>
    <TextView
    android:text="white"
    android:textColor="#ff0000"
    android:background="#ffffff"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="2"/>
    </LinearLayout>

    </LinearLayout>

    案例三:

    android:gravity:用来控制组件的对齐方式
    每一个按钮独自占一列

    Code:
    <?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="match_parent">

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button3"
    android:layout_gravity="bottom|right|top"
    android:layout_weight="1"/>

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button2"
    android:layout_gravity="center_vertical"
    android:layout_weight="1"/>

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button"
    android:layout_gravity="bottom"
    android:layout_weight="1" />
    </LinearLayout>












  • 相关阅读:
    数据库设计步骤 java程序员
    (1) 语法结构 java程序员
    (3)JavaScript学习笔记 函数、对象、数组 java程序员
    JavaScript 学习计划 java程序员
    (5)JavaScript学习笔记 变量 java程序员
    (2) 数据类型、值 及 字符串 java程序员
    (4)JavaScript学习笔记 数据类型和值(续) java程序员
    J2EE、J2SE、J2ME是什么意思? java程序员
    80端口(该端口是Tomcat的监听端口)已经被其他程序占用 java程序员
    (17) string 和 stringbuilder java程序员
  • 原文地址:https://www.cnblogs.com/bingghost/p/5720727.html
Copyright © 2011-2022 走看看