Disable Bluetooth discoverable mode on Android

Posted by Venator85 on Stack Overflow See other posts from Stack Overflow or by Venator85
Published on 2010-05-30T11:33:34Z Indexed on 2010/05/30 11:42 UTC
Read the original article Hit count: 169

Filed under:
|

Hi, I found in the Android documentation how to turn Bluetooth discoverability mode on:

Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivity(discoverableIntent);

This will make the device discoverable for 300 seconds (documentation).

My question is: how to turn discoverability OFF before this timeout occurs? I'd like to replicate the corresponding setting in Settings|Wireless and networks|Bluetooth settings applet, that allows discoverability to be turned on and off with a click.

Any help?

Thanks ;)

© Stack Overflow or respective owner

Related posts about android

Related posts about bluetooth