Android中的视图标签

1、include


<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="com.netease.ui.inflate.IncludeActivity">

    <include layout="@layout/to_include" android:id="@+id/to_include"
        android:layout_width="250dp"
        android:layout_height="250dp"
        android:layout_centerInParent="true"
        />

RelativeLayout>

特点:

    复用
    支持theme
    Id覆盖
    LayoutParams覆盖
    支持visibility
    不能作为Layout.xml的根基点

2、merge
标签在UI的结构优化中起着非常重要的作用,它可以删减多余的层级,优化UI。多用于替换FrameLayout或者当一个布局包含另一个时,标签消除视图层次结构中多余的视图组。例如你的主布局文件是垂直布局,引入了一个垂直布局的include,这是如果include布局使用的LinearLayout就没意义了,使用的话反而减慢你的UI表现。这时可以使用标签优化。


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

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@color/merge"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="44sp"
        android:text="@string/merge"/>
merge>
    减少一个视图层级
    必须为layout.xml的根节点,必须attach to root

3、ViewStub
标签最大的优点是当你需要时才会加载,使用他并不会影响UI初始化时的性能。各种不常用的布局想进度条、显示错误消息等可以使用标签,以减少内存使用量,加快渲染速度。是一个不可见的,大小为0的View。


<LinearLayout 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"
    android:orientation="vertical"
    tools:context="com.netease.ui.inflate.ViewStubActivity">
    <Button
        android:id="@+id/inflate"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/inflate"/>
    <ViewStub
        android:id="@+id/to_inflate"
        android:layout="@layout/to_inflate"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
LinearLayout>
   private ViewStub vsToInflate;
           vsToInflate = (ViewStub) findViewById(R.id.to_inflate);
        findViewById(R.id.inflate).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                vsToInflate.inflate();
            }
        });
    按需构造
    inflateId覆盖

你可能感兴趣的:(Android进阶)