Android: Set Bluetooth Discoverability Unbounded

前端 未结 6 1640
悲&欢浪女
悲&欢浪女 2021-01-06 23:57

I have spent the last couple of days trying to make an app that keeps my Samsung Galaxy S3 mini (Android 2.1.4) discoverable for an \"infinite\" amount of time. My code look

6条回答
  •  不思量自难忘°
    2021-01-07 00:20

    Works to me.

    Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
    enableBtIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 0);
    startActivityForResult(enableBtIntent, Utils.REQUEST_DEVICE_DISCOVERABLE);
    

    Disable manually your Bluetooth and then run the code. It will works, yes.

提交回复
热议问题