gpt4 book ai didi

android - 如何在不使用服务的情况下接收位置更新

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:44 24 4
gpt4 key购买 nike

除了运行服务来接收位置更新之外,还有其他选择吗?

最佳答案

你可以像这样使用 PendingIntent -

Intent intent = new Intent(CUSTOM_INTENT);
LocationManager manager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
PendingIntent launchIntent = PendingIntent.getBroadcast(context, 5000, intent, 0);

manager.requestLocationUpdates(selectProvider(), 0, 0, launchIntent);

您的广播接收器应该有一个针对 list 文件中的 CUSTOM_INTENT 的 Intent 过滤器

关于android - 如何在不使用服务的情况下接收位置更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6446569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com