测试我的设备是否可以在Android上发现

前端之家收集整理的这篇文章主要介绍了测试我的设备是否可以在Android上发现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想测试我的 Android设备是否可以发现之前发送提示用户打开它的意图,我该怎么办?

意图如下:

Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,30);
startActivityForResult(intent,idBlueToothDiscoveryRequest);

解决方法

我发现:
if(mBluetoothAdapter.getScanMode() != BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE)
{
    Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
    intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,30);
    startActivityForResult(intent,idBlueToothDiscoveryRequest);
}
原文链接:https://www.f2er.com/android/311518.html

猜你在找的Android相关文章