几乎每个多设备体验都始于查找可用的设备。为了简化此常见任务,我们提供了设备发现 API。
启动设备选择对话框
设备发现使用系统对话框让用户选择目标设备。要启动设备选择对话框,您首先需要获取设备发现客户端并注册结果接收器。请注意,类似于 registerForActivityResult
,此接收器必须作为活动或片段初始化路径的一部分无条件注册。
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) devicePickerLauncher = Discovery.create(this).registerForResult(this, handleDevices) }
Java
@Override public void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); devicePickerLauncher = Discovery.create(this).registerForResult(this, handleDevices); }
在上面的代码片段中,我们有一个未定义的 handleDevices
对象。在用户选择要连接的设备后,并且 SDK 成功连接到其他设备后,此回调将接收所选 Participants
列表。
Kotlin
handleDevices = OnDevicePickerResultListener { participants -> participants.forEach { // Use participant info } }
Java
handleDevices = participants -> { for (Participant participant : participants) { // Use participant info } }
注册设备选择器后,使用 devicePickerLauncher
实例启动它。DevicePickerLauncher.launchDevicePicker
采用两个参数 - 设备筛选器列表(请参阅以下部分)和 startComponentRequest
。startComponentRequest
用于指示应在接收设备上启动哪个活动,以及向用户显示的请求原因。
Kotlin
devicePickerLauncher.launchDevicePicker( listOf(), startComponentRequest { action = "com.example.crossdevice.MAIN" reason = "I want to say hello to you" }, )
Java
devicePickerLauncher.launchDevicePickerFuture( Collections.emptyList(), new StartComponentRequest.Builder() .setAction("com.example.crossdevice.MAIN") .setReason("I want to say hello to you") .build());
接受连接请求
当用户在设备选择器中选择设备时,接收设备上会出现一个对话框,询问用户是否接受连接。接受后,将启动目标活动,这可以在 onCreate
和 onNewIntent
中处理。
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) handleIntent(getIntent()) } override fun onNewIntent(intent: Intent) { super.onNewIntent(intent) handleIntent(intent) } private fun handleIntent(intent: Intent) { val participant = Discovery.create(this).getParticipantFromIntent(intent) // Accept connection from participant (see below) }
Java
@Override public void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); handleIntent(getIntent()); } @Override public void onNewIntent(Intent intent) { super.onNewIntent(intent); handleIntent(intent); } private void handleIntent(Intent intent) { Participant participant = Discovery.create(this).getParticipantFromIntent(intent); // Accept connection from participant (see below) }
设备筛选器
在发现设备时,通常需要筛选这些设备,只显示与当前用例相关的设备。例如
- 仅筛选具有摄像头的设备以帮助扫描二维码
- 仅筛选电视以获得大屏幕观看体验
对于此开发人员预览版,我们首先能够筛选到同一用户拥有的设备。
您可以使用类 DeviceFilter
指定设备筛选器
Kotlin
val deviceFilters = listOf(DeviceFilter.trustRelationshipFilter(MY_DEVICES_ONLY))
Java
List<DeviceFilter> deviceFilters = Arrays.asList(DeviceFilter.trustRelationshipFilter(MY_DEVICES_ONLY));
定义设备筛选器后,您可以启动设备发现。
Kotlin
devicePickerLauncher.launchDevicePicker(deviceFilters, startComponentRequest)
Java
Futures.addCallback( devicePickerLauncher.launchDevicePickerFuture(deviceFilters, startComponentRequest), new FutureCallback<Void>() { @Override public void onSuccess(Void result) { // do nothing, result will be returned to handleDevices callback } @Override public void onFailure(Throwable t) { // handle error } }, mainExecutor);
请注意,launchDevicePicker
是一个使用 suspend
关键字的异步函数。