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