Use the following:
Intent settings_intent = new Intent(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS); startActivityForResult(settings_intent, 0);
This will open the Bluetooth settings page, and then return to your activity, which launched the intent.
source share