Android Jetpack 提供 Wear OS UI 程式庫。Wear OS UI 程式庫包含下列類別:
-
CurvedTextView
:這個元件可讓您輕鬆沿著檢視區塊中可內切的最大圓圈的弧線,撰寫環繞文字。 -
DismissibleFrameLayout
:透過這個版面配置,使用者只要按下返回按鈕,或在螢幕上由左至右滑動,即可關閉任何檢視畫面。Wear OS 使用者預期的返回動作是由左至右滑動。 -
WearableRecyclerView
:這個檢視區塊會使用WearableLinearLayoutManager
提供基本偏移邏輯,用於更新子版面配置。 -
AmbientModeSupport
:這個類別會與AmbientModeSupport.AmbientCallbackProvider
介面搭配使用,提供微光模式的支援功能。
如需完整清單,請參閱「版本資訊」。
在 Wear OS UI 程式庫新增依附元件
如要開始建立應用程式,請建立 Wear-OS 專屬專案。然後新增下列依附元件
新增至應用程式的 build.gradle
檔案中:
dependencies { ... // Standard Wear OS libraries implementation "androidx.wear:wear:1.2.0" // includes support for wearable specific inputs implementation "androidx.wear:wear-input:1.1.0" }
從 Wear OS UI 程式庫套件匯入類別
如要使用 Wear OS UI 程式庫中的類別,請從 androidx.wear.widget
套件匯入類別。
在版面配置檔案中使用正確的元素名稱
在版面配置檔案中,使用與 Wear OS UI 程式庫相對應的完整名稱。
舉例來說,如要使用 Wear OS UI 程式庫中的
DismissibleFrameLayout
類別,可以在版面配置檔案中指定以下內容:
<androidx.wear.widget.DismissibleFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/swipe_dismiss_root" > <TextView android:id="@+id/test_content" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:text="Swipe the screen to dismiss me." /> </androidx.wear.widget.DismissibleFrameLayout>