Java tutorial
//package com.java2s; import android.bluetooth.BluetoothManager; import android.content.Context; import android.os.Build; public class Main { public static BluetoothManager getBluetoothManager(Context context) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { return (BluetoothManager) (context.getApplicationContext().getSystemService(Context.BLUETOOTH_SERVICE)); } return null; } }