当前位置:首页 > 安卓源码 > 技术博客 >

Android使用include标签重用布局提高显示布局文件的性能

时间:2017-12-04 15:08 来源:互联网 作者:源码搜藏 浏览: 收藏 挑错 推荐 打印

虽然Android提供很多小的可重用的交互组件,你仍然可能需要重用复杂一点的组件,这也许会用到Layout。为了高效重用整个的Layout,你可以使用include /和merge /标签把其他布局嵌入当前布局。 重布局非常强大,它让你可以创建复杂的可重用布局。比如,一个是/

虽然Android提供很多小的可重用的交互组件,你仍然可能需要重用复杂一点的组件,这也许会用到Layout。为了高效重用整个的Layout,你可以使用<include />和<merge />标签把其他布局嵌入当前布局。

重布局非常强大,它让你可以创建复杂的可重用布局。比如,一个是/否按钮面板,或者带有文字的自定义进度条。这也意味着,任何在多个布局中重复出现的元素可以被提取出来,被单独管理,再添加到Layout中。所以,虽然可以添加一个自定义查看来实现单独的UI组件,你可以更简单的直接重用某个Layout文件。

创建可重用布局

如果你已经知道你需要重用的布局,就先创建一个新的XML文件并定义布局。比如,以下是一个来自G-Kenya codelab的布局,定义了一个需要添加到每个Activity中的标题栏(titlebar .XML):

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width=”match_parent”
    android:layout_height="wrap_content"
    android:background="@color/titlebar_bg">

    <ImageView android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:src="@drawable/gafricalogo" />
</FrameLayout>

根节点查看就是你想添加入的布局类型。

使用<包括>标签

使用<include>标签,可以在Layout中添加可重用的组件。比如,这里有一个来自G-Kenya codelab的Layout需要包含上面的那个标题栏:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width=”match_parent”
    android:layout_height=”match_parent”
    android:background="@color/app_bg"
    android:gravity="center_horizontal">

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

    <TextView android:layout_width=”match_parent”
              android:layout_height="wrap_content"
              android:text="@string/hello"
              android:padding="10dp" />

    ...

</LinearLayout>

你也可以覆写被添加的布局的所有布局参数(任何android:layout_ *属性),通过在<include />中声明他们来完成。比如:

<include android:id="@+id/news_title"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         layout="@layout/title"/>

然而,如果你要在<include>中覆盖某些属性,你必须先覆写android:layout_height和android:layout_width。

使用<合并>标签

<merge>标签在你嵌套布局时取消了比如,如果你有一个Layout是一个竖直方向的LinearLayout,其中包含两个连续的View可以在别的Layout中重用,那么你会做一个LinearLayout来包含这两个View,以便重用。不过,当使用一个LinearLayout作为另一个LinearLayout的根节点时,这种嵌套的方式除了减慢你的UI性能外没有任何意义。

为了避免这种情况,你可以用<merge>元素来替代可重用Layout的根节点。例如:

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

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/add"/>

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/delete"/>

</merge>

现在,当你要将这个布局包含到另一个布局中时(并且使用了<include />标签),系统会忽略<merge>标签,直接把两个Button放到布局中<include>的所在位置。

Android使用include标签重用布局提高显示布局文件的性能 转载https://www.codesocang.com/appboke/36991.html

技术博客阅读排行

最新文章