Android 高级UI,android开发艺术探索

标签可以删减多余的层级,它多用于替换FrameLayout或者当一个布局包含另一个时,消除视图层次结构中多余的视图组

[html]  view plain copy

  1. <merge xmlns:android=“http://schemas.android.com/apk/res/android”>

  2. <Button

  3. android:layout_width=“fill_parent”

  4. android:layout_height=“wrap_content”

  5. android:text="@string/add"/>

  6. <Button

  7. android:layout_width=“fill_parent”

  8. android:layout_height=“wrap_content”

  9. android:text="@string/delete"/>

  10. </merge>

标签使用它的优点是需要时才会加载,它并不会影响UI初始化时的性能。各种不常用的布局都可以使用标签,以减少内存使用量,加快渲染速度。

[html]  view plain copy

  1. <ViewStub

  2. android:id="@+id/stub_import"

  3. android:inflatedId="@+id/panel_import"

  4. android:layout="@layout/progress_overlay"

  5. android:layout_width=“fill_parent”

  6. android:layout_height=“wrap_content”

  7. 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

  1. <?xml version\="1.0" encoding\="utf-8"?>  
  2. <resources>

  3. <styleAndroid 高级UI,android开发艺术探索
     name=“itcast”> 

  4. <item name=“android:textSize”>18px</item> 

  5. <item name=“android:textColor”>#0000CC</item>

  6. </style>

  7. </resources>

[html]  view plain copy

  1. <?xml version\="1.0" encoding\="utf-8"?>  
  2. <LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android” .>

  3. <TextView style="@style/itcast"

  4. …  />

  5. </LinearLayout>

主题是针对应用中所有Activity或者针对某个Activity设置样式,可以通过编辑AndroidManifest.xml来完成。

主题相比单个视图而言,是应用到整个 Activity 或者 application 的样式。下面例子将自定义一个主题,该主题将继承 Android 定义好的主题。

样式,可以通过编辑AndroidManifest.xml来完成。

主题相比单个视图而言,是应用到整个 Activity 或者 application 的样式。下面例子将自定义一个主题,该主题将继承 Android 定义好的主题。

上一篇:Python+Selenium UI自动化 - cookie处理方法及适用场景


下一篇:Java:线程