Program/Android Java

gps 상태보고 튀게만들기

너구리V 2011. 7. 11. 16:12
private boolean chkGpsService() {
String gs = android.provider.Settings.Secure.getString(getContentResolver(),
android.provider.Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if (gs.indexOf("gps", 0) < 0) {
// GPS OFF 일때 Dialog 띄워서 설정 화면으로 튀어봅니다..
AlertDialog.Builder gsDialog = new AlertDialog.Builder(this);
gsDialog.setTitle("GPS Status OFF !!!");
gsDialog.setMessage("Change Setting !!");
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);
}
}).create().show();
return false;
} else {
return true;
}
}
반응형

'Program > Android Java' 카테고리의 다른 글

Text자동 완성: AutoCompleteTextView  (0) 2011.09.20
안드로이드 달력  (0) 2011.08.17
c2dm  (0) 2011.07.11
안드로이드 db예제  (1) 2011.05.16
- interpolator 속성 -  (0) 2011.05.09