Android-布局优化merge, viewStub, include总结

多层布局的嵌套会导致页面加载慢,影响用户的体验,今天我们就来学学如何使用 include,merge及viewStub。

1.include

include便于对相同视图内容进行统一的控制管理,提高布局重用性,以标题栏为例,我们先定义一个通用的标题栏,相关代码如下:
commont_title

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_commontitle_root"
    android:layout_width="match_parent"
    android:layout_height="70dp"
    android:background="#0951C1">

    <TextView
        android:id="@+id/tv_back_commontitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="3dp"
        android:drawableLeft="@mipmap/back"
        android:drawablePadding="3dp"
        android:gravity="center_vertical"
        android:layout_centerVertical="true"
        android:minHeight="50dp"
        android:text="返回"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/tv_title_commontitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="标题"
        android:textSize="18sp" />

</RelativeLayout>

然后在我们的MainActivity页面引入,我们的MainActivity页面有一个加载视图的按钮

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

    <include
        android:id="@+id/iclude_main"
        layout="@layout/common_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
   />

    <Button
        android:id="@+id/btn_main_next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="加载视图"/>

</RelativeLayout>

效果如下:


image.png

那我们如果想设置标题怎么办?当然是findviewbyid()然后set了,如下:

         RelativeLayout relativeLayout = findViewById(R.id.ll_commontitle_root);
        TextView titleTv =  relativeLayout.findViewById(R.id.tv_title_commontitle);
        titleTv.setText("主界面");

运行,我擦,报错了。

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.view.View android.widget.RelativeLayout.findViewById(int)' on a null object reference

    at com.hxzk.layoutoptimizeproject.MainActivity.onCreate(MainActivity.java:17)

不能找到这个id,获取的RelativeLayout对象为null,这是为何?原来:如果给include设置了id,就会覆盖掉引用布局根布局的id,所以解决办法用两种:

  • 第一种直接获取include的id,进行findviewByid()
  • 第二种将两者的id取名一致

我们选取第一种,结果如下:


image.png

2.merge

merge标签是作为include标签的一种辅助扩展来使用的,也就是需要和include一起使用,它的主要作用是为了防止在引用布局文件时产生多余的布局嵌套。我们先看看我们现在的视图层级(通过android studio自带的Layout inspector):

image.png

欧克,我们看看我们将include中的布局改为merge,注意:merge必须放在布局文件的根节点上。这里做一个说明如果将RelativeLayout改为merge,Releative中所有的属性将都无法使用,因为merge不是一个view,merge extends Activity,所以我们直接删除相关属性

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

    <TextView
        android:id="@+id/tv_back_commontitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="3dp"
        android:drawableLeft="@mipmap/back"
        android:gravity="center"
        android:text="返回"
        android:textSize="18sp" />

    <TextView
        android:id="@+id/tv_title_commontitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="标题"
        android:textSize="18sp" />

</merge>

activity_main.xml中:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/rl_main_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

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

    <Button
        android:id="@+id/btn_main_next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="加载视图"/>

</RelativeLayout>

MainActivity中(第一种写法):

       TextView titleTv =  findViewById(R.id.tv_title_commontitle);
        titleTv.setText("主界面");

其实还有一种写法是不在xml中通过include引入,而是通过代码直接引入merge:
我们给activity_main.xml的根Relative设置id为 android:id="@+id/rl_main_root",在通过LayoutInflate.inflate方法渲染的时候, 第二个参数必须指定一个父容器,且第三个参数必须为true,也就是必须为merge下的视图指定一个父亲节

       RelativeLayout parentRl = findViewById(R.id.rl_main_root);
        LayoutInflater.from(this).inflate(R.layout.common_title,parentRl,true);
        TextView titleTv =  findViewById(R.id.tv_title_commontitle);
        titleTv.setText("主界面");

结果:


image.png

运行后再查看一下视图层级:

image.png

merge的使用,相当于直接将原RelativeLayout中的控件搬运到了父RelativeLayout中,所以merge所包含的控件之前的位置属性啥的要做响应的调整,对于父RelativeLayout。

2.1merge的优缺点

通过上面的代码及效果我们可以明显的看的优缺点。

2.1.1merge的优点

  • 减少了层级的嵌套,提高了渲染的效率。

2.1.2merge的缺点

缺点也是比较明显:

  • 由于merge不是view.原ViewGroup的属性都失效(对merge标签设置的所有属性都是无效的),也就是背景色啥的都不能正常显示。

3.ViewStub

ViewStub有点类似于懒加载,就是什么时候需要加载相关视图了,在做显示。话不多说,上代码:

  <Button
        android:id="@+id/btn_main_next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
       android:layout_centerInParent="true"
        android:text="加载视图"/>

    <ViewStub
        android:id="@+id/vs_main"
        android:inflatedId="@+id/vs_main_inflatedId"
        android:layout="@layout/vs_layout"
        android:layout_below="@id/btn_main_next"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

其中inflatedId是要加载的layout根布局的ViewGroup的id,layout是要加载的布局。其余属性不多说。
vs_layout布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/vs_main_inflatedId"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/btn_vscontent_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="viewStub中的内容0"
        android:layout_gravity="center"
        />
    <Button
        android:id="@+id/btn_vscontent_two"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="viewStub中的内容1"
        android:layout_gravity="center"
        />
    <Button
        android:id="@+id/btn_vscontent_three"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="viewStub中的内容2"
        android:layout_gravity="center"
        />

</LinearLayout>

MainActivity中的代码:

  Button btnNext =findViewById(R.id.btn_main_next);
        btnNext.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // 这里调用的是inflate方法,当然,也可以调用setVisibility方法(但是不建议这么做)
                // 只能点击一次加载视图按钮,因为inflate只能被调用一次。调用完成ViewStub被销毁
                // 如果再次点击按钮,会抛出异常"ViewStub must have a non-null ViewGroup viewParent"
                ViewStub viewStub = findViewById(R.id.vs_main);
                if(viewStub != null){
                    viewStub.inflate();
                    //这里注意ViewStub只是一个容器,所以在其显示后,其中的view就是在Activity中展示,所以直接findViewByid即可
                    Button btnOne =findViewById(R.id.btn_vscontent_one);
                    Button btnTwo =findViewById(R.id.btn_vscontent_two);
                    btnOne.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                            Toast.makeText(MainActivity.this,"点击了第一个ViewStub按钮",Toast.LENGTH_LONG).show();
                        }
                    });
                    btnTwo.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                            Toast.makeText(MainActivity.this,"点击了第二个ViewStub按钮",Toast.LENGTH_LONG).show();

                        }
                    });
                }
            }
        });

我们获取了ViewStub内容没有加载的布局层级:


image.png

ViewStub内容已加载的布局层级:


image.png

ViewStub标签使用注意点:
1,ViewStub标签不支持merge标签(ViewStub的加载布局中不能有merge,但merge中可以有ViewStub)。因此这有可能导致加载出来的布局存在着多余的嵌套结构,开发中视情况而定。
2,ViewStub的inflate只能被调用一次,第二次调用会抛出异常。
3,虽然ViewStub是不占用任何空间的,但是每个布局都必须要指定layout_width和layout_height属性,否则运行就会报错。

完毕!

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

推荐阅读更多精彩内容