블루투스 지원기기1 안드로이드 기기의 블루투스 지원여부 확인하기. public static BluetoothAdapter bluetoothAdapter; public BluetoothService(Activity activity) { //생성자입니다. this.activity = activity; bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); } public static boolean getDeviceState() { //블루투스가 지원되는 기기인지 지원이 되지않는 기기인지 판별 if(bluetoothAdapter == null) return false; else return true; } getDevicesState 메소드에서 ture가 반환되면 지원이 가능한 기기. false가 반환되면 지원이 되지않는 기기입니.. 2019. 12. 30. 이전 1 다음