我想像谷歌地图一样启用用户的位置,有可能在appcelerator工作室吗? (不将用户重定向到设置屏幕)
答案 0 :(得分:0)
你可以尝试一下:
Intent intent=new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", true);
sendBroadcast(intent);
参考:https://stackoverflow.com/a/11503095/5193915
但我认为它不适用于较新的设备。