Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android ApiDemo示例解讀系列之八:App

Android ApiDemo示例解讀系列之八:App

編輯:Android開發實例

       我們在前面介紹過Hello world示例,這裡的Hello world 的Layout定義稍有不同:

XML/HTML代碼
  1. <TextView xmlns:android=”http://schemas.android.com/apk/res/android”  
  2. android:id=”@+id/text”  
  3. android:layout_width=”match_parent”  
  4. android:layout_height=”match_parent”  
  5. android:gravity=”center_vertical|center_horizontal”  
  6. android:text=”@string/hello_world”/>  

       ApiDemo 示例中的將Hello world 顯示的屏幕中間。gravity 類似於其它平台上的alignment(對齊)。

Android ApiDemo示例解讀系列之八:App->Activity->Hello world

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved