Android 左右均分布局的实现

本文使用 Android 提供的几种已有 Layout,实现了左右均分的布局效果,并且在实现的过程中,对 Android 內建布局 LinearLayout、RelativeLayout 等常用布局的使用进行了温习,将一些以前忽略的细节进行了回顾;对近些年新推出的百分比布局、ConstraintLayout 的基本使用进行了归纳总结;熟悉了一下 FlexboxLayout 的基本使用。

  1. 最熟悉的便是利用 LinearLayout 的 weight 属性进行布局,实现如下
<?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="100dp"
    android:orientation="horizontal">

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/darker_gray" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/background_dark" />

</LinearLayout>

概括来讲,线性布局就是,能够使其子试图在垂直或水平方向依次堆叠起来的布局,weight 属性的作用是表明该子视图所占的比例。如上,左侧和右侧的视图均将
weight 的值设置为了1,二者所占权重相同,因此将均分父容器的所有空间。

  1. 其实使用 RelativeLayout 也可是实现同样的效果

使用一个尺寸为0的 view 作为 divider,然后让两个组件分别居于其左侧和右侧即可。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="100dp">

    <View
        android:id="@+id/divider"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_centerHorizontal="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_toLeftOf="@id/divider"
        android:layout_toStartOf="@id/divider"
        android:background="@android:color/darker_gray" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_toEndOf="@id/divider"
        android:layout_toRightOf="@id/divider"
        android:background="@android:color/background_dark" />

</RelativeLayout>
  1. 同样的,使用 RelativeLayout 实现,但是细节有些差异。

该实现与例二几乎一样,都是使用 RelativeLayout 以及零尺寸的 divider 来实现的,该例主要是为了明确一个之前未曾留意过的细节,即 RelativeLayout 的 layout_alignXxx 属性与 layout_toXxxOf 属性的差异。

  • android:layout_alignRight="@id/divider"
    • 其作用是“对齐”,因此声明该属性的 view,其右边界与 divider 的右边界对齐
  • android:layout_toRightOf="@id/divider"
    • 其作用是“规定相对位置”,因此声明该属性的 view,其位置在 divider 右侧,并且左边界与 divider 的右边界对齐
  • 其他方向同理
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="100dp">

    <View
        android:id="@+id/divider"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_centerHorizontal="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignRight="@id/divider"
        android:layout_alignEnd="@id/divider"
        android:background="@android:color/darker_gray" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_alignLeft="@id/divider"
        android:layout_alignStart="@id/divider"
        android:background="@android:color/background_dark" />

</RelativeLayout>
  1. 使用支持库中提供的百分比布局可以轻松实现该布局效果

Android 的支持库中提供了百分比布局的支持,需要引入如下支持库:

    implementation 'com.android.support:percent:26.1.0'

百分比布局提供了 PercentFrameLayout 和 PercentRelativeLayout 这两个布局容器,使我们能够方便地对其内容以百分比的形式声明其尺寸、边距,以进行灵活的布局。

  • 支持以百分比声明尺寸的属性:
    • heightPercent
    • widthPercent
    • marginBottomPercent
    • marginEndPercent
    • marginLeftPercent
    • marginPercent
    • marginRightPercent
    • marginStartPercent
    • marginTopPercent

如下,使用 PercentRelativeLayout 实现了左右均分的布局效果。

<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="100dp">

    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@android:color/darker_gray"
        app:layout_heightPercent="100%"
        app:layout_widthPercent="50%" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:background="@android:color/background_dark"
        app:layout_heightPercent="100%"
        app:layout_widthPercent="50%" />

</android.support.percent.PercentRelativeLayout>
  1. 更为灵活的 ConstraintLayout 可以轻松实现各种灵活布局

ConstraintLayout 与 RelativeLayout 非常相似,都是描述容器中各个成员的相对位置及相互约束进行灵活布局的方式。ConstraintLayout 灵活、强大,而且其布局也能够减少视图层级、提升绘制效率,但是对其语法和使用方式还不甚熟悉,所以并未在项目实践中大量使用。值得一提的是,Android Studio 中为 ConstraintLayout 提供了功能强大的布局编辑器,即便不熟悉其语法,也能够轻松使用其实现相应布局。

如下,使用 ConstraintLayout 实现了左右均分的布局,实现的过程也并未手写代码,只是使用布局编辑器拖拽了相应的控件,并且使用其“推断”功能生成布局,最后进行了微调而已。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tv_left"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@android:color/darker_gray"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/tv_right"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/tv_right"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@android:color/background_dark"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/tv_left"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>
  1. 使用 FlexboxLayout 进行布局

Flexbox 布局(弹性盒布局)本是使用 css、用于网页布局的一种布局规范,但是移动端的开发者也有了掌握的必要。一方面,这种布局方式确实方便灵活,另一方面,如今使用 RN、weex 等跨平台的开发框架时,少不了使用 flexbox 布局。

浏览一遍该网站,即可对 css 的几种基本布局方式有个大致的了解;过一遍阮一峰前辈的flex布局教程,便能够使用 flexbox 进行常用的布局,这个教程语法、实例丰富,可以当做学习材料,也可以当做开发过程中的参考。

Google 官方提供了 flexbox-layout,这一个库来为 Android 提供了 弹性盒布局的功能,其基本的语法与 css 的语法保持一致。RN 与 weex 能够支持 flexbox 布局,实质上也是在 Android 和 iOS 两端的 SDK 中分别实现了一套原生的、符合 flexbox 语法规范的自定义布局而已。

如下,我们使用 flexbox 布局,在 Android 上实现了一个简单的左右均分布局。

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.flexbox.FlexboxLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    app:flexDirection="row"
    app:flexWrap="nowrap">

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        app:layout_flexGrow="1" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:background="@android:color/background_dark"
        app:layout_flexGrow="1" />

</com.google.android.flexbox.FlexboxLayout>

文中代码

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容