仔细按照这篇文章中的说明进行操作后:

How to detect when android wear device gets disconnected?我终于设法让我的手机检测到何时使用onCapabilityChanged连接了可穿戴设备。

我在可穿戴设备侧遵循了完全相同的步骤,并且试图检测电话何时连接到可穿戴设备,但从未触发onCapabilityChanged

wear.xml(在电话上)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="android_wear_capabilities">
        <item>track_phone</item>
    </string-array>
</resources>

在AndroidManifest中(可穿戴)
<service android:name=".BackgroundService.WearableService"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="com.google.android.gms.wearable.CAPABILITY_CHANGED" />
                <data android:scheme="wear" android:host="*"/>
            </intent-filter>
        </service>

在WearableService中(在可穿戴设备上)
override fun onCapabilityChanged(p0: CapabilityInfo?) {
    super.onCapabilityChanged(p0)
    Log.i("WearableService", "Capability changed: {${p0?.nodes?.size ?: "null"}")
}

我确定服务已启动,因为我正在运行另一个进程

我在电话方面也做同样的事情。当我断开/连接手机服务中正确调用了蓝牙onCapabilityChanged时,
但不涉及可穿戴设备的服务。

有任何想法吗?

最佳答案

在尝试了所有方法使其工作之后,我选择了使用标准的Service而不是WearableListenerService

我在CapabilityClient.OnCapabilityChangedListener上实现了Service:

override fun onCapabilityChanged(p0: CapabilityInfo) {
        Log.i("WearService", "Wearable Capability changed: {${p0?.nodes?.size ?: "null"}")
    }

并注册了监听器:
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
Wearable.getCapabilityClient(this).addListener(this, CAPABILITY)
        return super.onStartCommand(intent, flags, startId)
}

关于android - OnCapabilityChanged可在手机上使用,但不可穿戴,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54256345/

10-12 03:45