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.
看起来当调用 getLastKnownLocation() 时,它给出了该提供程序最后一次可用的位置,我正在使用 GPS 提供程序,如果 GPS 尚未设置位置,我希望它返回 null。所以基本上我想要以下任何一项:
或者
任何帮助表示赞赏...谢谢
您是否尝试过ACCESS_FINE_LOCATION在清单中向提供者请求权限,然后从 LocationManager 请求权限,调用 getLastKnownLocation(LocationManager.GPS_PROVIDER)? 它应该向您返回 GPS 提供商获取的最后一个已知位置,如果无法获取位置,则返回 null
ACCESS_FINE_LOCATION