Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
萨拉姆我的朋友们,
是否有任何特定代码可用于从我的应用程序中关闭手机中的定位服务?
问候, Tareq Al-Aqarbeh</p>
您实际上不能直接弄乱设备设置。您所能做的就是通过您的应用程序启动位置设置意图,以便用户可以打开/关闭您需要的内容
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); startActivity(intent);