Java tutorial
//package com.java2s; import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.content.Intent; public class Main { public static void enableRequest(Activity activity, int requestCode) { Intent btOn = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); activity.startActivityForResult(btOn, requestCode); } }