編寫: kesenhoo - 原文: http://developer.android.com/training/wearables/apps/layouts.html
為可穿戴設備創建佈局是和手持設備是一樣的,除了我們需要為屏幕的尺寸和glanceability進行設計。但是不要期望通過搬遷手持應用的功能與UI到可穿戴上會有一個好的用戶體驗。僅僅在有需要的時候,我們才應該創建自定義的佈局。請參考可穿戴設備的design guidelines學習如何設計一個優秀的可穿戴應用。
通常來說,我們應該在手持應用上創建好notification,然後讓它自動同步到可穿戴設備上。這讓我們只需要創建一次notification,然後可以在不同類型的設備(不僅僅是可穿戴設備,也包含車載設備與電視)上進行顯示,免去為不同設備進行重新設計。
如果標準的notification風格無法滿足我們的需求(例如NotificationCompat.BigTextStyle 或者 NotificationCompat.InboxStyle),我們可以顯示一個使用自定義佈局的activity。我們只可以在可穿戴設備上創建並處理自定義的notification,同時系統不會將這些notification同步到手持設備上。
Note: 當在可穿戴設備上創建自定義的notification時,我們可以使用標準notification API(API Level 20),不需要使用Support Library。
為了創建自定義的notification,步驟如下:
public void onCreate(Bundle bundle){
...
setContentView(R.layout.notification_activity);
}
Theme.DeviceDefault.Light
。例如:<activity android:name="com.example.MyDisplayActivity"
android:exported="true"
android:allowEmbedded="true"
android:taskAffinity=""
android:theme="@android:style/Theme.DeviceDefault.Light" />
Intent notificationIntent = new Intent(this, NotificationActivity.class);
PendingIntent notificationPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
Note: 當notification呈現在主頁時,系統會根據notification的語義,使用一個標準的模板來呈現它。這個模板可以在所有的錶盤上進行顯示。當用戶往上滑動notification時,將會看到為這個notification準備的自定義的activity。
當我們使用Android Studio的工程嚮導創建一個Wearable應用的時候,會自動包含Wearable UI庫。你也可以通過給build.gradle
文件添加下面的依賴聲明把庫文件添加到項目:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:+'
compile 'com.google.android.gms:play-services-wearable:+'
}
這個庫文件幫助我們建立為可穿戴設備設計的UI。更詳細的介紹請看為可穿戴設備創建自定義UI。
下面是一些Wearable UI庫中主要的類:
這個參考文獻解釋瞭如何詳細地使用每個UI組件。查看Wear API reference documentation瞭解上述類的用法。
如果你正在使用Eclipse ADT,那麼下載Wearable UI library將Wearable UI庫導入到你的工程當中。
Note: 我們推薦使用Android Studio來開發可穿戴應用。