Android布局控件之常用linearlayout布局

下面是“Android布局控件之常用LinearLayout布局”的完整攻略。

常用LinearLayout布局

LinearLayout布局简介

LinearLayout布局是Android中最基本、最常用的布局之一,其主要作用是将子控件按照线性方向依次排列。LinearLayout分为水平(horizontal)和垂直(vertical)两种方向,水平方向的LinearLayout中子控件从左到右排列,垂直方向的LinearLayout中子控件从上到下排列。LinearLayout的重要属性如下:

  • orientation:方向属性,可设为horizontal或vertical。
  • layout_weight:宽度或高度比重,当布局中的子控件没有设置具体的宽度或高度时,通过layout_weight属性可以实现布局中子控件的宽度或高度按照一定比例分配。
  • gravity:子控件对齐方式,可设为left、top、center等。

LinearLayout布局示例

下面通过两个网页布局的示例来进一步讲解LinearLayout布局。

示例一:水平布局

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="#F5F5F5"
    android:padding="12dp">

    <ImageView
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:src="@drawable/avatar"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginLeft="10dp">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="John Smith"
            android:textSize="16sp"
            android:textColor="#333"
            android:maxLines="1"
            android:ellipsize="end"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Software Engineer"
            android:textSize="14sp"
            android:textColor="#999"
            android:maxLines="1"
            android:ellipsize="end"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="ABC Company"
            android:textSize="14sp"
            android:textColor="#999"
            android:maxLines="1"
            android:ellipsize="end"/>
    </LinearLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Follow"
        android:textColor="@color/colorPrimary"
        android:background="@drawable/btn_follow"/>

</LinearLayout>

以上代码实现的效果是一个水平排列的个人信息卡片,包括头像、姓名、职位和公司信息,以及一个“Follow”按钮。其中,头像和姓名信息在左侧,按钮在右侧,中间则显示职位和公司信息。关于代码中使用的一些属性,比如:background、padding、textSize、maxLines等也是比较常用的属性,不再进行讲解。

示例二:垂直布局

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:scaleType="centerCrop"
        android:src="@drawable/pic1"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="12dp">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Article Title"
            android:textSize="18sp"
            android:textColor="#333"
            android:maxLines="2"
            android:ellipsize="end"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Article Summary"
            android:textSize="14sp"
            android:textColor="#999"
            android:layout_marginTop="10dp"/>
    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#EEE"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:padding="12dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Author:"
            android:textColor="#999"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="John Smith"
            android:textColor="#333"
            android:layout_marginLeft="6dp"/>

        <View
            android:layout_width="1dp"
            android:layout_height="12dp"
            android:background="#CCC"
            android:layout_marginLeft="6dp"
            android:layout_marginRight="6dp"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Date:"
            android:textColor="#999"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="2020/01/01"
            android:textColor="#333"
            android:layout_marginLeft="6dp"/>
    </LinearLayout>

</LinearLayout>

以上代码实现的效果是一个垂直布局的文章列表项,包括文章的标题、摘要、作者、日期等信息。其中,图片、标题和摘要排列在上方,而作者和日期信息则在下方水平排列。在此布局中,我们还使用了View来实现虚线分割线的效果。在TextView中,我们通过使用maxLines和ellipsize属性来设置文字的最大行数和省略方式。

总结

通过以上两个布局示例,我们可以看到LinearLayout在控制子控件排列方向、对齐方式等方面非常灵活,也比较容易上手。在实际开发中,我们可以根据UI设计稿和具体的布局需求选择合适的LinearLayout布局方向和属性设置。

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Android布局控件之常用linearlayout布局 - Python技术站

(0)
上一篇 2023年6月27日
下一篇 2023年6月27日

相关文章

  • Maven一键部署Springboot到Docker仓库为自动化做准备(推荐)

    下面是详细讲解Maven一键部署Springboot到Docker仓库为自动化做准备的完整攻略。 一、前提条件 在开始使用Maven一键部署Springboot到Docker仓库之前,需要确保以下条件都满足: 1.已安装Docker,并正确配置了Docker环境; 2.已安装Maven,并正确配置了Maven环境; 3.已有一个可部署的Springboot项…

    other 2023年6月27日
    00
  • Newifi mini怎么分配静态IP地址?Newifi mini的静态IP地址分配方法详解

    Newifi mini怎么分配静态IP地址? 如果你想为Newifi mini路由器分配静态IP地址,可以按照以下步骤进行操作: 首先,确保你已经连接到Newifi mini的管理界面。你可以在浏览器中输入路由器的默认IP地址(通常是192.168.1.1)来访问管理界面。 在管理界面中,输入你的用户名和密码登录。如果你是第一次登录,可以使用默认的用户名和密…

    other 2023年7月31日
    00
  • 一篇文章带你入门Java数据类型

    一篇文章带你入门Java数据类型 Java数据类型简介 在Java中,每个变量都有一个明确的数据类型,这决定了变量可以保存什么类型的数据。Java 中的数据类型分为两种: 基本数据类型 引用数据类型 基本数据类型包括: byte, short, int, long float, double char boolean 引用数据类型包括: 类 接口 数组等 基…

    other 2023年6月27日
    00
  • python3爬虫_环境安装

    python3爬虫_环境安装 爬虫是指通过程序自动访问互联网上的信息资源并提取数据的一种技术手段。Python语言由于其简单易学、开发效率高等优点,成为了爬虫领域中最流行的语言之一。本文将为大家介绍如何在自己的电脑上安装Python3的爬虫环境。 安装Python3 Python3官网提供了各平台版本的下载,可以根据自己的系统版本选择相应的安装包下载,Pyt…

    其他 2023年3月28日
    00
  • Android提高Service优先级的方法分析

    Android提高Service优先级的方法分析 介绍 Service是Android中一种用于在后台执行长时间运行操作的组件。然而,默认情况下,Service在系统资源分配上的优先级相对较低,可能会受到系统资源紧张的影响。因此,当我们需要提高Service的优先级时,可以采取一些方法来实现。 本文将详细讲解Android提高Service优先级的方法,并提…

    other 2023年6月28日
    00
  • WPS Office Pro2016专业增强版详细安装激活教程(附序列号)

    WPS Office Pro2016专业增强版详细安装激活教程 WPS Office Pro2016专业增强版是一款功能强大的办公软件,在安装和激活过程中需要注意以下几个步骤。 步骤一:下载安装WPS Office Pro2016专业增强版 在官方网站(http://www.wps.cn/)上下载WPS Office Pro2016专业增强版安装包。下载完成…

    other 2023年6月26日
    00
  • JS 屏蔽键盘不可用与鼠标右键不可用的方法

    为了屏蔽键盘和鼠标的某些操作,我们可以利用浏览器的事件机制,通过监听指定的事件以达到目的。下面将分别介绍屏蔽键盘和鼠标右键的方法,并提供代码示例进行说明。 屏蔽键盘操作 方法一:使用 onKeyDown 事件 监听键盘事件,通过判断事件对象的 keyCode 属性是否为需要屏蔽的键位码,来实现屏蔽操作。下面是示例代码,如需屏蔽多个键位,可在 switch 语…

    other 2023年6月27日
    00
  • java在hashmap初始化时赋初值过程解析

    当我们创建一个新的HashMap时,初始化大小并为每一个槽位分配好一个初始值是非常重要的。Java在初始化HashMap时赋初值过程解析主要涉及以下几个步骤: 1. 初始化 在HashMap初始化过程中,我们需要提供一个初始容量和一个加载因子。初始容量指的是这个HashMap期望存储的数据的数量。在HashMap初始化时,系统会首先根据这个初始容量初始化一个…

    other 2023年6月20日
    00
合作推广
合作推广
分享本页
返回顶部