Exemple de projet https://github.com/ry0takaha4/android-bluetooth-on-off-sample-app
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
// MainActivity.java
/**
*Écouteur de détection de connexion Bluetooth
*Appelé à chaque fois que la fonction Bluetooth de l'unité principale est activée / désactivée
*/
private BluetoothProfile.ServiceListener mProfileListener = new BluetoothProfile.ServiceListener() {
public void onServiceConnected(int profile, BluetoothProfile proxy) {
System.out.println("Bluetooth est activé.");
hoge();
if (profile == BluetoothProfile.HEADSET) {
mBluetoothHeadset = proxy;
}
}
public void onServiceDisconnected(int profile) {
System.out.println("Bluetooth est désactivé.");
foo();
if (profile == BluetoothProfile.HEADSET) {
mBluetoothHeadset = null;
}
}
};
// MainActivity.java
private BluetoothAdapter mBluetoothAdapter;
private BluetoothProfile mBluetoothHeadset;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Vérification activée par Bluetooth
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter != null) {
//Cette fois, le profil Bluetooth.CASQUE, mais tout va bien tant qu'il est détecté
mBluetoothAdapter.getProfileProxy(this, mProfileListener, BluetoothProfile.HEADSET);
} else {
System.out.println("Bluetooth n'est pas pris en charge ou désactivé sur cet appareil.");
}
}
@Override
protected void onDestroy() {
super.onDestroy();
//Fermer la connexion proxy de profil au service
if (mBluetoothAdapter != null && mBluetoothHeadset != null) {
mBluetoothAdapter.closeProfileProxy(BluetoothProfile.HEADSET, mBluetoothHeadset);
}
}
Bluetooth should never be enabled without direct user consent. If you want to turn on Bluetooth in order to create a wireless connection, you should use the ACTION_REQUEST_ENABLE Intent, which will raise a dialog that requests user permission to turn on Bluetooth. The enable() method is provided only for applications that include a user interface for changing system settings, such as a "power manager" app.
Source: https://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html#enable ()
Lorsque vous souhaitez activer Bluetooth N'activez pas Bluetooth sans le consentement de l'utilisateur. Si vous voulez l'activer, vous devez utiliser l'intention ʻACTION_REQUEST_ENABLE` et afficher une boîte de dialogue demandant l'autorisation de l'utilisateur.