Android ApiDemo示例解读8:Activity->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(对齐)。
版权声明:
作者:后浪云
链接:https://www.idc.net/help/207063/
文章版权归作者所有,未经允许请勿转载。
THE END