반응형
지도 서비스 이용시 GPS 설정을 하지 않으면 현재 위치 기능을 이용할 수 없다.
앱 실행시 GPS 설정이 되어 있지 않으면 설정 화면으로 이동하게 해주는 코드..
해당 함수를 원하는 위치에서 콜 해주면 된다.
앱에서 자동으로 설정해주면 더 좋겠지만 개인정보 때문에 구글에서 막아둔 것 같다
//GPS 설정 체크 private boolean chkGpsService() { String gps = android.provider.Settings.Secure.getString(getContentResolver(), android.provider.Settings.Secure.LOCATION_PROVIDERS_ALLOWED); Log.d(gps, "aaaa"); if (!(gps.matches(".*gps.*") && gps.matches(".*network.*"))) { // GPS OFF 일때 Dialog 표시 AlertDialog.Builder gsDialog = new AlertDialog.Builder(this); gsDialog.setTitle("위치 서비스 설정"); gsDialog.setMessage("무선 네트워크 사용, GPS 위성 사용을 모두 체크하셔야 정확한 위치 서비스가 가능합니다.\n위치 서비스 기능을 설정하시겠습니까?"); gsDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { // GPS설정 화면으로 이동 Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); intent.addCategory(Intent.CATEGORY_DEFAULT); startActivity(intent); } }) .setNegativeButton("NO", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { return; } }).create().show(); return false; } else { return true; } }
반응형
'Android' 카테고리의 다른 글
[Android] 단말기 고유값 생성(Device Unique ID) (0) | 2013.04.29 |
---|---|
[Android] Network 연결 체크 (0) | 2013.03.11 |
android 웹서비스 url 요청시 ssl 인증서(https) 에러 문제 (0) | 2012.11.14 |
android webview 로드시 ssl(https) 보안인증서 문제 (5) | 2012.11.14 |
Android app Google Play 등록(안드로이드앱 구글플레이 등록) (2) | 2012.10.23 |