본문 바로가기

프로그래밍/Android

Bluetooth 설정 화면 창 바로가기


Android 설정 > 블루투스 선택 시 실행되는 화면은 아래 소스로 호출 가능하다.


Intent intentOpenBluetoothSettings = new Intent();

intentOpenBluetoothSettings.setAction(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);

startActivityForResult(intentOpenBluetoothSettings, REQUEST_SETTING_BLUETOOTH);