Android 布局优化

发布于 2024-06-13 04:41:20 字数 11068 浏览 16 评论 0

在开发过程中我们经常说性能优化,但性能优化是一个比较宽泛的概念。在 Android 开发中性能优化可能包括:Java 代码优化, 算法优化, SQLite 优化, 布局优化等。那么这篇博客就来总结并分享下 Android 开发中的布局优化。

布局原则

在 Android UI 布局过程中,通过遵守一些惯用、有效的布局原则,我们可以制作出高效且复用性高的 UI,概括来说包括如下几点:

  • 尽量多使用 RelativeLayout 和 LinearLayout, 不要使用绝对布局 AbsoluteLayout,在布局层次一样的情况下, 建议使用 LinearLayout 代替 RelativeLayout, 因为 LinearLayout 性能要稍高一点,但往往 RelativeLayout 可以简单实现 LinearLayout 嵌套才能实现的布局。
  • 将可复用的组件抽取出来并通过 include 标签使用;
  • 使用 ViewStub 标签来加载一些不常用的布局;
  • 使用 merge 标签减少布局的嵌套层次;

RelativeLayout VS LinearLayout

第一条原则说了布局层次一样的情况下 LinearLayout 比 RelativeLayout 要好, 但往往 RelativeLayout 可以简单实现 LinearLayout 嵌套才能实现的布局。假如需要实现如下布局:

用 LinearLayout 来实现 xml 代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:padding="6dip">
    
    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_marginRight="6dip"
        android:src="@drawable/icon" />

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="0dip"
        android:layout_weight="1"
        android:layout_height="fill_parent">

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:gravity="center_vertical"
            android:text="My Application" />
            
        <TextView  
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1" 
            android:singleLine="true"
            android:ellipsize="marquee"
            android:text="Simple application that shows how to use RelativeLayout" />
            
    </LinearLayout>

</LinearLayout>

而用 RelativeLayout 实现代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:padding="6dip">
    
    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="6dip"
        android:src="@drawable/icon" />

    <TextView  
        android:id="@+id/secondLine"
        android:layout_width="fill_parent"
        android:layout_height="26dip" 
        android:layout_toRightOf="@id/icon"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:text="Simple application that shows how to use RelativeLayout" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/icon"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_above="@id/secondLine"
        android:layout_alignWithParentIfMissing="true"
        android:gravity="center_vertical"
        android:text="My Application" />

</RelativeLayout>

可以看到用 RelativeLayout 实现,布局层次明显少了,所以大多数时候优先推荐使用 RelativeLayout。

查看布局层次

如何查看布局层次呢?有两种办法:一是通过手机的开发者选项,4.0 及以上 Android 版本可通过设置->开发者选项->显示布局边界打开页面布局显示,看看是否有不必要的节点和嵌套。第二种就是利用 SDK 自带的 UI 性能检测工具 HierarchyViewer。

进入 sdk 目录下的 tools 文件夹下,找到 HierarchyViewer 并运行(此时保持你的模拟器或真机正在运行需要进行分析的 App),双击我们正在显示的这个 App 所代表的进程。接下来便会进入 hierarchyviewer 的界面,我们可以在这里很清晰看到正在运行的 UI 的布局层次结构以及它们之间的关系。大概的显示如下图:

通过布局图我们可以看到根节点 DecorView 下包含一个 LinearLayout, 这个 LinearLayout 就是包含 Activity 布局和状态栏的整个屏幕显示的布局父节点,这个 LinearLayout 有两个子节点, 一个是 FrameLayout, FrameLayout 就是 Activity 布局中默认的父布局节点, 这个节点下面就包含了我们自己写的 xml 布局, 还有一个子节点就是 ViewStub,关于这个节点我们在后面会详细介绍。

include 的使用

在实际开发中,我们经常会遇到一些共用的 UI 组件,比如带返回按钮的导航栏,如果为每一个 xml 文件都设置这部分布局,一是重复的工作量大,二是如果有变更,那么每一个 xml 文件都得修改。还好,Android 为我们提供了 include 标签,顾名思义,通过它,我们可以将这些共用的组件抽取出来单独放到一个 xml 文件中,然后使用 include 标签导入共用布局,这样,前面提到的两个问题都解决了。下面以在一个布局 main.xml 中用 include 引入另一个布局 header.xml 为例。

header.xml 文件

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

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_40"
        android:layout_above="@id/text"/>

    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_40"
        android:layout_alignParentBottom="true"
        android:text="@string/app_name" />

</RelativeLayout>

然后我们在需要引入 footer 的布局 xml 中通过 include 导入这个共用布局。

main.xml 文件

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="hello world" />

    <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center" >

        <include layout="@layout/header" />

    </RelativeLayout>
</FrameLayout>

通过这种方式,我们既能提高 UI 的制作和复用效率,也能保证制作的 UI 布局更加规整和易维护。

merge 的使用

merge 标签的作用是合并 UI 布局,使用该标签能降低 UI 布局的嵌套层次。merge 标签可用于两种典型情况:

  • 布局根结点是 FrameLayout 且不需要设置 background 或 padding 等属性,可以用 merge 代替,因为 Activity 内容布局的 parent view 就是个 FrameLayout,所以可以用 merge 消除只剩一个,这一点可以从上图中看到。
  • 某布局作为子布局被其他布局 include 时,使用 merge 当作该布局的顶节点,这样在被引入时顶结点会自动被忽略,而将其子节点全部合并到主布局中。

以第一种情况为例,main.xml 布局就可以优化如下:

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="hello world" />

        <RelativeLayout 
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center" >

            <include layout="@layout/header" />

        </RelativeLayout>
    </FrameLayout>
</merge>

以第二种情况为例,header.xml 布局可以优化如下:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
 
    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_40"
        android:layout_above="@id/text"/>
 
    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_40"
        android:layout_alignParentBottom="true"
        android:text="@string/app_name" />
 
</merge>

这样就不会有多余的 FrameLayout 和 RelativeLayout 节点了。

ViewStub 标签

viewstub 标签同 include 标签一样可以用来引入一个外部布局,不同的是,viewstub 引入的布局默认不会扩张,即既不会占用显示也不会占用位置,从而在解析 layout 时节省 cpu 和内存。

viewstub 常用来引入那些默认不会显示,只在特殊情况下显示的布局,如进度布局、网络失败显示的刷新布局、信息出错出现的提示布局等。

我们新建一个 xml 文件用来显示一个网络错误时提示信息 error.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

   <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@android:color/white"
        android:padding="10dip"
        android:text="Message"
        android:textColor="@android:color/black" />

</RelativeLayout>

然后在 main.xml 里面加入 ViewStub 的标签引入上面的布局:

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:background="@android:color/darker_gray"
    android:layout_height="match_parent" >

    ...

    <ViewStub
        android:id="@+id/error_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout="@layout/error" />

</merge>

在 java 中通过(ViewStub)findViewById(id) 找到 ViewStub,通过 stub.inflate() 展开 ViewStub,然后得到子 View,如下:

private View errorView;
 
private void showError() {
    // not repeated infalte
    if (errorView != null) {
        errorView.setVisibility(View.VISIBLE);
        return;
    }
 
    ViewStub stub = (ViewStub)findViewById(R.id.error_layout);
    errorView = stub.inflate();
}
 
private void showContent() {
    if (errorView != null) {
        errorView.setVisibility(View.GONE);
    }
}

在上面 showError() 中展开了 ViewStub,同时我们对 errorView 进行了保存,这样下次不用继续 inflate。

总结

这篇 Blog 没有详细介绍 HierarchyViewer 工具的使用,相信如果对布局原则比较熟练之后,对工具的依赖大大减少,开发效率也会大大的提升。除这些布局原则之外,还需要大家对 Android 各个组件的属性很熟悉,比如如果要做这么一个布局, 一个图片和一个文本的布局,新手们往往会用一个 Layout 嵌套 ImageView 和 TextView 来做, 但是当我们知道 TextView 有 drawableLeft, drawableRight 等属性时,那么实现这样的一个布局是非常快速高效的。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

熊抱啵儿

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

我们的影子

文章 0 评论 0

素年丶

文章 0 评论 0

南笙

文章 0 评论 0

18215568913

文章 0 评论 0

qq_xk7Ean

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文