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.
可能重复: 以编程方式启用 GPS 不起作用
我正在制作这个应用程序,我需要通过读取传入消息中的特殊代码来打开 GPS,并将其 GPS 位置(经纬度)发送给发件人。所以我需要知道如何在不使用任何用户界面的情况下通过编码启用 GPS。
使用从 BroadcastReceiver 启动的服务(用于检测传入 SMS 的服务)。调用是一样的。如果你真的需要 GPS 坐标(网络不够好),你需要在 LocationManager 上调用 requestLocationUpdates 并等待 GPS 同步并调用你的监听器。我曾经为一个应用程序做过同样的事情,工作得很好。