Android ApiDemos示例解析(8):App->Activity->Hello world
在Android简明开发教程三:第一个应用Hello World 已经介绍了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(对齐)。
作者:mapdigit
补充:移动开发 , Android ,