bluetooth
-
[Android] Bluetooth 시작하기Android/공부 2020. 11. 30. 13:34
bluetooth 통신 기초 블루투스 기능에 대한 기초 학습 1. 매니페스트 권한 주기 2. 블루투스 어댑터 연결하기 BluetoothAdapter mBluetoothAdapter; 2. bluetooth on if (!mBluetoothAdapter.isEnabled()) { Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(intent, REQUEST_ENABLE_CODE); } 3. bluetooth off if (mBluetoothAdapter.isEnabled()) { mBluetoothAdapter.disable(); } 4. 주변 블루투스 장치 검색 if (mBluetoothAda..