1page.title=UI 總覽 2@jd:body 3 4 5<p>Android 應用程式中的所有使用者介面元素都是使用 {@link android.view.View} 與 6{@link android.view.ViewGroup} 物件。{@link android.view.View} 物件可在畫面上繪製使用者能與之互動的項目。 7{@link android.view.ViewGroup} 物件可保留其他 8{@link android.view.View} (與 {@link android.view.ViewGroup}) 物件,以定義介面的版面配置。 9</p> 10 11<p>Android 提供 {@link android.view.View} 與{@link 12android.view.ViewGroup} 子類別集合,提供一般輸入控制項 (例如按鈕與文字欄位) 及各種版面配置模型 (例如線性或相對)。 13</p> 14 15 16<h2 id="Layout">使用者介面版面配置</h2> 17 18<p>應用程式每個元件的使用者介面是使用 {@link 19android.view.View} 與 {@link android.view.ViewGroup} 物件的階層來定義,如圖 1 所示。每個檢視群組都是不可見容器,用以組織子檢視,而子檢視可能是輸入控制項或其他繪製部分 UI 的小工具。這個階層樹狀結構可依您的需求簡單或複雜化 (但簡化才會有最佳效能)。 20 21 22 23</p> 24 25<img src="{@docRoot}images/viewgroup.png" alt="" /> 26<p class="img-caption"><strong>圖 1.</strong>定義 UI 版面配置的檢視階層圖例 27</p> 28 29<p>如要宣告版面配置,您可以在程式碼中將 {@link android.view.View} 物件具現化,然後開始建置樹狀結構,但最簡單也最有效的方法是使用 XML 檔案來定義您的版面配置。 30 31XML 提供類似於 HTML 且人類看得懂的版面配置結構。</p> 32 33<p>檢視的 XML 元素名稱相當於它個別代表的 Android 類別。因此, 34<code><TextView></code> 元素可在您的 UI 中建立 {@link android.widget.TextView} 小工具,而 35<code><LinearLayout></code> 元素可以建立 {@link android.widget.LinearLayout} 檢視群組。 36 </p> 37 38<p>例如,上面有一個文字檢視與按鈕的簡單垂直版面配置,看起來像這樣:</p> 39<pre> 40<?xml version="1.0" encoding="utf-8"?> 41<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 42 android:layout_width="fill_parent" 43 android:layout_height="fill_parent" 44 android:orientation="vertical" > 45 <TextView android:id="@+id/text" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:text="I am a TextView" /> 49 <Button android:id="@+id/button" 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:text="I am a Button" /> 53</LinearLayout> 54</pre> 55 56<p>當您載入應用程式中的版面配置資源時,Android 會將每個版面配置節點初始化成執行階段物件,您再用來定義其他行為、查詢物件狀態或修改版面配置。 57 58</p> 59 60<p>如需建立 UI 版面配置的完整指南,請參閱 <a href="declaring-layout.html">XML 版面配置</a>。 61 62 63 64<h2 id="UIComponents">使用者介面元件</h2> 65 66<p>您不必使用 {@link android.view.View} 與 {@link 67android.view.ViewGroup} 物件來建置您的所有 UI。Android 提供的數個應用程式元件會提供標準 UI 版面配置,您只需要定義內容即可。 68這些 UI 元件各自有一組獨特的 API,如其各自的文件中所述,例如<a href="{@docRoot}guide/topics/ui/actionbar.html">動作列</a>、<a href="{@docRoot}guide/topics/ui/dialogs.html">對話方塊</a>及<a href="{@docRoot}guide/topics/ui/notifiers/notifications.html">狀態通知</a>。 69</p> 70 71 72