用java編寫一個程序,基於安卓系統,運行程序自動判斷手機藍牙是否打開,如果沒有打開,出現提示,同時通過選擇,實現把手機藍牙打開
http://blog.csdn.net/vnanyesheshou/article/details/51554852
//彈出對話框提示用戶是後打開
Intent enabler = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enabler, REQUEST_ENABLE);
//不做提示,直接打開,不建議用下面的方法,有的手機會有問題。
// mBluetoothAdapter.enable();