GPS检查始终在Samsung Galaxy J5 Prime SM-G570F中返回假

时间:2019-07-27 01:58:24

标签: android android-gps samsung-galaxy

在某些android设备中,如果启用了gps检查功能,它将始终返回false(三星Galaxy J5 Prime SM-G570F),但在其他某些设备上(lenovo)则没有问题
是什么问题?

String provider = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
        if(!provider.contains("gps")){
            final Intent poke = new Intent();
            poke.setClassName("com.android.settings","com.android.settings.widget.SettingsAppWidgetProvider");
            poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
            poke.setData(Uri.parse("3"));
            sendBroadcast(poke);
            buildAlertMessageNoGps();
        }else{

        }

0 个答案:

没有答案