返回列表 發帖

openBTClick

  1. if(myBT == null)
  2.         {
  3.             status.setText("this device not support Bluetooth");
  4.         }
  5.         
  6.         if(!myBT.enable())
  7.         {
  8.             Intent enable = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  9.             this.startActivityForResult(enable,0);
  10.         }
  11.         Intent scanable = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
  12.         this.startActivityForResult(scanable,0x2);
  13.         status.setText("Bluetooth open success");
複製代碼

返回列表