<!-- Google Translate Element --> <!-- menu -->

<!-- end of menu --> <script src="http://www.google.com/buzz/api/button.js" type="text/javascript"></script> 使用<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文件中需要一个顶级容器来容纳其他的组件,而不能直接放置多个组件,例如如下的代码:

<FrameLayoutxmlns: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="GoldenGate"/>

</FrameLayout>


上面的代码显示一个图片,然后在图片上方显示一个title, 结果如下图:android activity的默认布局为FrameLayout,这样上面的布局代码就有2层FrameLayout,通过HierarchyViewer工具看到的结构如下:如果能在layout文件中把FrameLayout声明去掉就可以进一步优化布局代码了。 但是由于布局代码需要外层容器容纳,如果直接删除FrameLayout则该文件就不是合法的布局文件。这种情况下就可以使用<merge /> 标签了。修改为如下代码就可以消除多余的FrameLayout了:

<mergexmlns: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="GoldenGate"/>

</merge>

通过HierarchyViewer工具看到的结构如下:merge也有一些使用限制: 只能用于xml layout文件的根元素;在代码中inflate一个以merge为根元素的布局文件时候,你需要指定一个ViewGroup 作为其容器,并且要设置attachToRoot 为true,详细信息参考inflate()函数doc。上面示例项目代码:http://progx.org/users/Gfx/android/MergeLayout.zip

更多相关文章

  1. 浅谈android Toast五种样式 (让你的Toast更炫)
  2. 使用xml布局菜单
  3. Qt for Android(安卓)自定义启动页(解决启动页拉伸的问题)
  4. 开始努力学习Android的binder机制
  5. Android:源码环境编译自定义的APP到ROM(System Image)中
  6. Android(安卓)fill_parent、wrap_content和match_parent的区别
  7. Android之动态改变布局
  8. Android(安卓)之 线性布局
  9. (原)Android到IOS开发的转换(一)

随机推荐

  1. Android 自己动手写ListView学习其原理 1
  2. Flutter 项目打包发布
  3. Android(安卓)ADB 找不到设备的解决方法
  4. Android-Module:ImageView常用XML属性
  5. 2020-09-07
  6. ゞAndroid - 疑难問題 - 技巧小结 ゞ
  7. android造假 editView显示时间
  8. android Uri使用
  9. android使用google map api
  10. Android使用返回键退出实现