1

如何将选择选项添加到观看选择菜单中。

一些手表(例如 InstaWeather)在选择缩略图下显示一个齿轮,单击齿轮提供设置。

不幸的是,我找不到 InstaWeather 手表的源代码。

但这必须是可能的。

4

1 回答 1

0

根据提供配置活动培训

支持配置参数的表盘可以让用户使用可穿戴应用程序中的活动、手持应用程序上的活动或两者来自定义表盘。用户可以在可穿戴设备上启动可穿戴配置活动,也可以从 Android Wear 配套应用启动配套配置活动。

示例代码包括如何添加可穿戴配置活动:

<service
  android:name=".DigitalWatchFaceService" ... />
  <!-- companion configuration activity -->
  <meta-data
    android:name=
       "com.google.android.wearable.watchface.companionConfigurationAction"
    android:value=
       "com.example.android.wearable.watchface.CONFIG_DIGITAL" />
  <!-- wearable configuration activity -->
  <meta-data
    android:name=
       "com.google.android.wearable.watchface.wearableConfigurationAction"
    android:value=
       "com.example.android.wearable.watchface.CONFIG_DIGITAL" />
  ...
</service>
于 2016-07-17T03:28:01.393 回答