我们在前面介绍过Hello world示例,这里的Hello world 的Layout定义稍有不同:
- <TextView xmlns:android=”http://schemas.android.com/apk/res/android”
- android:id=”@+id/text”
- android:layout_width=”match_parent”
- android:layout_height=”match_parent”
- android:gravity=”center_vertical|center_horizontal”
- android:text=”@string/hello_world”/>
ApiDemo 示例中的将Hello world 显示的屏幕中间。gravity 类似于其它平台上的alignment(对齐)。