Android性能优化:布局优化

2018-12-27  本文已影响13人  ZebraWei

版权声明:本文为Carson_Ho原创文章,转载请注明出处![图片上传中...(微信图片_20181227174249.png-5e47ed-1545903777462-0)]

目录
一、影响的性能

布局性能的好坏 主要影响: Android应用中的页面显示速度

二、如何影响性能

布局影响Android性能的实质:页面的测量 & 绘制时间
1个页面通过递归 完成测量 & 绘制过程 = measure、layout 过程

三、优化思路

4.1 选择耗费性能较少的布局

即布局过程需要消耗更多性能(CPU资源&时间)

4.2减少布局层级(嵌套)

/** 
 * 实例说明:在上述例子,在布局B中 通过<include>标签引用布局C
 * 此时:布局层级为 =  RelativeLayout ->> Button 
 *                                  —>> RelativeLayout ->> Button
 *                                                     ->> TextView
 * 现在使用<merge>优化:将 被引用布局C根标签 的RelativeLayout 改为 <merge>
 * 在引用布局C时,布局C中的<merge>标签内容(根节点)会被去掉,在<include>里存放的是布局C中的<merge>标签内容(根节点)的子标签(即子节点)
 * 即 <include>里存放的是:<Button>、<TextView>
 * 此时布局层级为 =  RelativeLayout ->> Button 
 *                                ->> Button
 *                                ->> TextView
 * 即 已去掉之前无意义、多余的<RelativeLayout>
 */  

 // 被引用的公共部分:布局C = layout_c.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_10"/>

    <TextView
        android:id="@+id/textview"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_10"/>

</merge>

// 布局B:layout_b.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="match_parent"
        android:layout_marginBottom="@dimen/dp_10" />

    <include layout="@layout/layout_c.xml" />

</RelativeLayout>

4.2.2 合适选择布局类型

4.3 提高 布局的复用性

4.3.1使用布局标签
作用:实现 布局模块化,即 提取布局中的公共部分 供其他布局共用。
具体使用

4.4减少初次测量&绘制时间
主要优化方案:使用 布局标签<ViewStub> & 尽可能少用布局属性 wrap_content
4.4.1使用布局标签

/** 
 * 实例说明:在布局A中引入布局B,只有在特定时刻C中才显示
 */  

 // 步骤1:先设置好预显示的布局B = layout_b.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_10"/>

    <TextView
        android:id="@+id/textview"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_10"/>

</RelativeLayout>

// 步骤2:在布局A通过<ViewStub>标签引入布局B(类似<include>);注:此时该布局还未被加载显示
// 布局A:layout_a.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="match_parent"
        android:layout_marginBottom="@dimen/dp_10" />

    <ViewStub
        android:id="@+id/Blayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout="@layout/layout_b" />

</RelativeLayout>

只有当ViewStub被设置为可见 / 调用了ViewStub.inflate()时,ViewStub所指向的布局文件才会被inflate 、实例化,最终 显示<ViewStub>指向的布局

ViewStub stub = (ViewStub) findViewById(R.id.Blayout);   
stub.inflate();

特别注意

4.4.2 尽可能少用布局属性 wrap_content
布局属性 wrap_content 会增加布局测量时计算成本,应尽可能少用,在已知宽高为固定值时,不使用wrap_content。
5.布局调试工具

总结
上一篇 下一篇

猜你喜欢

热点阅读