Android ApiDemo示例解讀8:Activity->Hello world
作者:佚名
我們?cè)谇懊娼榻B過(guò)Hello world示例,這里的Hello world 的Layout定義稍有不同,ApiDemo 示例中的將Hello world 顯示的屏幕中間。gravity 類似于其它平臺(tái)上的alignment(對(duì)齊)。
我們?cè)谇懊娼榻B過(guò)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 類似于其它平臺(tái)上的alignment(對(duì)齊)。
責(zé)任編輯:閆佳明
來(lái)源:
jizhuomi