Java tutorial
//package com.java2s; //License from project: Open Source License import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothManager; import android.content.Context; public class Main { public static BluetoothAdapter getAdapter(Context context) { // Initializes Bluetooth adapter. final BluetoothManager bluetoothManager = (BluetoothManager) context .getSystemService(Context.BLUETOOTH_SERVICE); return bluetoothManager.getAdapter(); } }