Android examples for Bluetooth:Turn off bluetooth
stop bluetooth Advertising
//package com.java2s; import android.bluetooth.le.AdvertiseCallback; import android.bluetooth.le.BluetoothLeAdvertiser; public class Main { public static void stopAdvertising(BluetoothLeAdvertiser advertiser, AdvertiseCallback callback) { if (advertiser == null) return; advertiser.stopAdvertising(callback); }/*from w ww .j ava 2 s. c o m*/ }