使用<include /> 标签来重用layout代码
如果在一个项目中需要用到相同的布局设计,可以通过<include /> 标签来重用layout代码,该标签在android开发文档中没有相关的介绍。在android主屏程序中用到了这个标签:

<com.android.launcher.Workspace
android:id="@+id/workspace"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
launcher:defaultScreen="1">
<include android:id="@+id/cell1" layout="@layout/workspace_screen" />
<include android:id="@+id/cell2" layout="@layout/workspace_screen" />
<include android:id="@+id/cell3" layout="@layout/workspace_screen" />

</com.android.launcher.Workspace>
这样可以多次引用一个布局片段而不用重复的复制、粘贴。通过include标签也可以覆写一些属性的值,例如上面的示例就覆写了引用的layout中的id值。下面是另外一个示例:
<include android:layout_width="fill_parent" layout="@layout/image_holder" />
<include android:layout_width="256dip" layout="@layout/image_holder" />

使用<merge /> 标签来减少视图层级结构

在Android layout文件中需要一个顶级容器来容纳其他的组件,而不能直接放置多个组件,例如如下的代码

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

android:layout_width="fill_parent"

android:layout_height="fill_parent">

<ImageView

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:scaleType="center"

android:src="@drawable/golden_gate" />

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Golden Gate" />

</FrameLayout>

上面的代码显示一个图片,然后在图片上方显示一个title, 结果如下图:

Android layout之优化:使用include和merge 标签
android activity的默认布局为FrameLayout,这样上面的布局代码就有2层FrameLayout,通过HierarchyViewer
工具看到的结构如下:
Android layout之优化:使用include和merge 标签(转载) - mzl626 - mzl626的个人主页
如果能在layout文件中把FrameLayout声明去掉就可以进一步优化布局代码了。 但是由于布局代码需要外层容器容纳,如果
直接删除FrameLayout则该文件就不是合法的布局文件。这种情况下就可以使用 标签了。
修改为如下代码就可以消除多余的FrameLayout了:

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

<ImageView

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:scaleType="center"

android:src="@drawable/golden_gate" />

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Golden Gate" />

</merge>

通过HierarchyViewer工具看到的结构如下:
Android layout之优化:使用include和merge 标签(转载) - mzl626 - mzl626的个人主页
merge也有一些使用限制: 只能用于xml layout文件的根元素;在代码中inflate一个以merge为根元素的
布局文件时候,你需要指定一个ViewGroup 作为其容器,并且要设置attachToRoot 为true,详细信息参考
inflate()函数doc。

上面示例项目代码:
http://progx.org/users/Gfx/android/MergeLayout.zip

更多相关文章

  1. android UI进阶之布局的优化(二)
  2. Android实战技巧之四十五:复用原有C代码的方案
  3. 这本《第三行代码》,让大家久等了!
  4. 《第一行代码Android》读书笔记
  5. Android NDK开发篇(六):Java与原生代码通信(异常处理)
  6. android代码混淆个人总结及踩坑
  7. [置顶] Android 界面滑动实现---Scroller类 从源码和开发文档中
  8. Android中的通知和自定义通知布局

随机推荐

  1. android里getView,inflate,listview问题
  2. android ksoap用法
  3. Android(安卓)中Intent的putExtra()方法
  4. android,总结,判断应用程序是否切换到后
  5. android 获取当前时间
  6. android C/C++ source files 全局宏定义
  7. Android 之 setContentView 源码阅读
  8. android 调用系统相机程序,存放文件夹创建
  9. Android聊天软件开发(基于网易云IM即时通
  10. Android requestFeature() must be calle