if(!ba.isEnabled()){
Intent it = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(it,RESULT_OK);
}

이렇게 블루투스 장치를 사용할 것이지 묻고 블루투스를 활성화 시키더라고요

이렇게 안하고 그냥 어플자체적으로 사용자의 동의없이 활성화시키고 비활성화 시킬수없을가요??