Android examples for android.bluetooth:Bluetooth
change Bluetooth Name
import android.bluetooth.BluetoothAdapter; public class Main{ public static void changeBluetoothName(String name) { BluetoothAdapter mAdapter = BluetoothAdapter.getDefaultAdapter(); mAdapter.setName(name);//from w w w .j ava 2 s .c om } }