Java tutorial
//package com.java2s; import android.bluetooth.BluetoothAdapter; import android.content.Context; public class Main { private static BluetoothAdapter mBluetoothAdapter; private static Context mContext; public static void initBluetooth(Context context) { // Get local Bluetooth adapter if (mBluetoothAdapter == null) mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); mContext = context; } }