web-dev-qa-db-ja.com

GPSが無効になっているかどうかを確認する方法Android

MainActivityに2つのファイルMainActivity.JavaとHomeFragment.Javaがあり、HomeFragmentから関数を呼び出して、ユーザーの電話で位置情報サービスをオンにするように要求します。問題は、ユーザーが位置情報機能を既にオンにしている場合でも、関数が呼び出されます。ロケーション機能がオフの場合にのみHomeFragmentの機能が起動されるようにする方法はありますか?.

HomeFragment.Java

public static void displayPromptForEnablingGPS(
        final Activity activity)
{
    final AlertDialog.Builder builder =
            new AlertDialog.Builder(activity);
    final String action = Settings.ACTION_LOCATION_SOURCE_SETTINGS;
    final String message = "Enable either GPS or any other location"
            + " service to find current location.  Click OK to go to"
            + " location services settings to let you do so.";


    builder.setMessage(message)
            .setPositiveButton("OK",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface d, int id) {
                            activity.startActivity(new Intent(action));
                            d.dismiss();
                        }
                    });

    builder.create().show();
}

MainActivity.Java

public void showMainView() {
    HomeFragment.displayPromptForEnablingGPS(this);
}

ありがとうございました :)

13

次のようなものを使用できます。

final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE );

if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
    // Call your Alert message
}

これでうまくいくはずです。

位置情報サービスが有効になっているかどうかを確認するには、次のようなコードを使用できます。

String locationProviders = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if (locationProviders == null || locationProviders.equals("")) {
...
startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
}

ソース:Marcus 'Post found here

25
liquidsystem