标签可以删减多余的层级,它多用于替换FrameLayout或者当一个布局包含另一个时,消除视图层次结构中多余的视图组
[html] view plain copy
-
<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>
标签使用它的优点是需要时才会加载,它并不会影响UI初始化时的性能。各种不常用的布局都可以使用标签,以减少内存使用量,加快渲染速度。
[html] view plain copy
-
<ViewStub
-
android:id="@+id/stub_import"
-
android:inflatedId="@+id/panel_import"
-
android:layout="@layout/progress_overlay"
-
android:layout_width=“fill_parent”
-
android:layout_height=“wrap_content”
-
android:layout_gravity=“bottom” />
2、Android样式和主题
android中的样式是用于为界面元素定义显示风格,它是一个包含一个或者多个view控件属性的集合。
Android 允许在外部样式文件中定义 Android 应用程序的 Look 和 Feel ,你可以将定义好的样式应用在不同的视图(Views)上。你可以在 XML 文件中定义样式,并将这些样式运用到不同的组件上。使用XML这种方式定义样式,你只需要配置一些通用的属性,以后如果需要修改样式,可以集中修改。
你可以在你 Android 项目的 /res/values 文件下创建一个 XML 文件,注意给文件的根目录必须是 。下面的例子将展示在 /res/xml目录下创建 style.xml 文件。
定义和使用如下:
[html] view plain copy
- <?xml version\="1.0" encoding\="utf-8"?>
-
<resources>
-
<style
name=“itcast”> -
<item name=“android:textSize”>18px</item>
-
<item name=“android:textColor”>#0000CC</item>
-
</style>
-
</resources>
[html] view plain copy
- <?xml version\="1.0" encoding\="utf-8"?>
-
<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android” .>
-
<TextView style="@style/itcast"
-
… />
-
</LinearLayout>
主题是针对应用中所有Activity或者针对某个Activity设置样式,可以通过编辑AndroidManifest.xml来完成。
主题相比单个视图而言,是应用到整个 Activity 或者 application 的样式。下面例子将自定义一个主题,该主题将继承 Android 定义好的主题。
样式,可以通过编辑AndroidManifest.xml来完成。
主题相比单个视图而言,是应用到整个 Activity 或者 application 的样式。下面例子将自定义一个主题,该主题将继承 Android 定义好的主题。