Java tutorial
//package com.java2s; //License from project: Apache License import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.content.Intent; public class Main { private static final int REQUEST_ENABLE_BT = 1; public static void startRequestEnableBluetoothActivityForResult(Activity activity) { Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); activity.startActivityForResult(intent, REQUEST_ENABLE_BT); } }