Android四种常见布局方式示例教程

 更新时间:2022年09月28日 11:35:42   作者:Shewyoo  
Android四种布局有线性布局LinearLayout、相对布局RelativeLayout、网格布局GridLayout、和滚动视图ScrollView,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧

一、线性布局LinearLayout

有两种排序方式

  • orientation属性值为horizontal时,内部视图在水平方向从左往右排列。
  • orientation属性值为vertical时,内部视图在垂直方向从上往下排列。

如果不指定orientation属性,则LinearLayout默认水平方向排列。

线性布局的权重

指线性布局的下级视图各自拥有多大比例的宽高。

属性名为layout_weight,但该属性不在LinearLayout节点设置,而在线性布局的直接下级视图设置,表示改下级视图占据的宽高比例。

  • layout_width为0dp时,表示水平方向的宽度比例
  • layout_height为0dp时,表示垂直方向的高度比例

例:

第一个线性布局:width = 0dp 说明在水平方向设置宽度比例,weight = 1,占据weight总数的1/2,则占据一半空间。

第二个线性布局:height = 0dp 说明在垂直方向设置宽度比例,weight = 1,占据weight总数的1/3,则占据三分之一空间。

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="0dp"//宽度为0dp,通过权重设置宽度比例
            android:layout_height="wrap_content"
            android:layout_weight="1"//weight为1,下面的weight也为1,占1/2,即宽度比例占1/2
            android:text="横排第一个"
            android:textSize="17sp"
            android:textColor="#000000"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="横排第二个"
            android:textSize="17sp"
            android:textColor="#000000"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="0dp"//高度为0dp,通过权重设置高度比例
            android:layout_weight="1"//weight为1,下面的weight为2,占1/3,即宽度比例占1/3
            android:text="竖排第一个"
            android:textSize="17sp"
            android:textColor="#000000"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:text="竖排第二个"
            android:textSize="17sp"
            android:textColor="#000000"/>
    </LinearLayout>

二、相对布局RelativeLayout

相对布局的视图位置由平级或上级视图决定,用于确定下级视图位置的参考物分两种:

  • 与该视图自身平级的视图
  • 该视图的上级视图

如果不设定下级视图的参照物,那么下级视图默认显示在RelativeLayout内部的左上角。

相对位置的取值

例:

    <TextView
        android:id="@+id/tv_center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_centerInParent="true"
        android:text="中间"
        android:textSize="11sp"
        android:textColor="#000000"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_centerHorizontal="true"
        android:text="水平中间"
        android:textSize="11sp"
        android:textColor="#000000"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_centerVertical="true"
        android:text="垂直中间"
        android:textSize="11sp"
        android:textColor="#000000"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_alignParentLeft="true"
        android:text="上级左边对齐"
        android:textSize="11sp"
        android:textColor="#000000"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_toLeftOf="@id/tv_center"
        android:layout_alignTop="@id/tv_center"
        android:text="中间左边"
        android:textSize="11sp"
        android:textColor="#000000"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:layout_above="@id/tv_center"
        android:layout_alignLeft="@id/tv_center"
        android:text="中间上边"
        android:textSize="11sp"
        android:textColor="#000000"/>

三、网格布局GridLayout

网格布局支持多行多列的表格排列。

网格布局默认从左往右、从上到下排列,新增两个属性:

  • columnCount属性:指定网格的列数,即每行能放多少视图。
  • rowCount属性:指定网格行数,即每列能放多少视图。

例:

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnCount="2"
    android:rowCount="2">
    <TextView
        android:layout_width="0dp"//设置权重,占满屏幕
        android:layout_columnWeight="1"
        android:layout_height="60dp"
        android:background="#ffcccc"
        android:text="浅红色"
        android:gravity="center"//设置文字位于网格中间
        android:textColor="#000000"
        android:textSize="17sp"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="60dp"
        android:layout_columnWeight="1"
        android:background="#ffaa00"
        android:text="浅红色"
        android:gravity="center"
        android:textColor="#000000"
        android:textSize="17sp"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="60dp"
        android:layout_columnWeight="1"
        android:background="#00ff00"
        android:text="绿色"
        android:gravity="center"
        android:textColor="#000000"
        android:textSize="17sp"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="60dp"
        android:layout_columnWeight="1"
        android:background="#660066"
        android:text="深紫色"
        android:gravity="center"
        android:textColor="#000000"
        android:textSize="17sp"/>
</GridLayout>

四、滚动视图ScrollView

有两种:

  • ScrollView:垂直方向的滚动视图,垂直方向滚动时,layout_width属性值设置为match_parent,layout_height 属性值设置为wrap_content。
  • HorizontalScrollView:水平方向的滚动视图,水平方向滚动时,layout_width属性值设置为wrap_content,layout_height属性值设置为match_parent。

例:

水平方向两个View共600dp,超出屏幕,所以上级视图使用HorizontalScrollView,宽度自适应,高度跟随上级视图。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <HorizontalScrollView
        android:layout_width="wrap_content"
        android:layout_height="200dp">
<!--        水平方向的线性布局-->
        <LinearLayout
            android:layout_width="wrap_content"//宽度自适应
            android:layout_height="match_parent"//高度跟随上级视图
            android:orientation="horizontal">//水平排列
        <View
            android:layout_width="300dp"//宽度自定义,超出屏幕
            android:layout_height="match_parent"
            android:background="#aaffff"/>
        <View
            android:layout_width="300dp"
            android:layout_height="match_parent"
            android:background="#ffff00"/>
        </LinearLayout>
    </HorizontalScrollView>
<!--        垂直方向的线性布局-->
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="vertical">
        <View
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:background="#aaffff"/>
        <View
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:background="#ffff00"/>
</LinearLayout>
    </ScrollView>
</LinearLayout>

到此这篇关于Android四种常见布局方式示例教程的文章就介绍到这了,更多相关Android布局内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Android实现一个完美的倒计时功能

    Android实现一个完美的倒计时功能

    在Adroid应用中,倒计时的功能使用的很多,例如点击获取短信验证码之后的倒计时等等,这篇文章主要给大家介绍了关于利用Android如何实现一个完美的倒计时功能的相关资料,需要的朋友可以参考下
    2021-11-11
  • Android RecycleView添加head配置封装的实例

    Android RecycleView添加head配置封装的实例

    这篇文章主要介绍了Android RecycleView添加head配置封装的实例的相关资料,这里提供实例帮助大家实现这样的功能,需要的朋友可以参考下
    2017-08-08
  • Android调用系统图库获取图片的方法

    Android调用系统图库获取图片的方法

    这篇文章主要为大家详细介绍了Android调用系统图库获取图片,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • Android通过AlarmManager类实现简单闹钟功能

    Android通过AlarmManager类实现简单闹钟功能

    这篇文章主要为大家详细介绍了Android通过AlarmManager类实现简单闹钟功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-06-06
  • Android升级gradle 后引入aar包报错解决

    Android升级gradle 后引入aar包报错解决

    这篇文章主要为大家介绍了Android升级gradle 后引入aar包报错解决,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-04-04
  • Android 自定义TextView实现文本内容自动调整字体大小

    Android 自定义TextView实现文本内容自动调整字体大小

    本文主要介绍了Android 自定义TextView实现文本内容自动调整字体大小以适应TextView的大小的方法。具有很好的参考价值。下面跟着小编一起来看下吧
    2017-03-03
  • Android编程实现播放视频时切换全屏并隐藏状态栏的方法

    Android编程实现播放视频时切换全屏并隐藏状态栏的方法

    这篇文章主要介绍了Android编程实现播放视频时切换全屏并隐藏状态栏的方法,结合实例形式分析了Android视频播放事件响应及相关属性设置操作技巧,需要的朋友可以参考下
    2017-08-08
  • 详解Android中的MVP架构分解和实现

    详解Android中的MVP架构分解和实现

    本篇文章主要介绍了详解Android中的MVP架构分解和实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • Android热修复Tinker接入及源码解读

    Android热修复Tinker接入及源码解读

    热修复这项技术,基本上已经成为项目比较重要的模块了。主要因为项目在上线之后,都难免会有各种问题本文讲述了Android热修复Tinker接入及源码解读
    2018-09-09
  • Android应用获取设备序列号的方法

    Android应用获取设备序列号的方法

    本篇文章主要介绍了Android应用获取设备序列号的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-06-06

最新评论