在 Android 列表视图中获取位置的最佳方法
由于位置(网络或 GPS)需要一段时间才能接收,那么如何在列表视图中使用位置数据。如果在创建时填充列表视图,则通常尚未找到该位置并且将为空。
构建此类视图以呈现列表视图,然后使用位置数据填充行的最佳方法是吗?
如果是或不是,最好的方法是什么?您将如何通过代码示例来实现这一点?
Since the locaion (network or gps) takes a while to receive, how would one use location data in a list view. If the list view is populated on create, often the location is not yet found and would be null.
Is the best way to architect this type of view to render the list view and then subsequently populate the rows with the location data?
If so or if not, what is the best approach? How would you implement this with code examples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置一个 ListView 及其数据列表,并在数据更改时通知它。这是一个例子。
我所做的是获取列表视图并使用空数组列表设置适配器。现在,每当我想要更新列表视图数据时,我都会执行以下操作。
列表视图将更新。另一种方法是将数据直接添加到适配器而不是传入的列表。
You can setup a ListView with its data list and notify it when the data has changed. Here's an example.
What I did was get my list view and setup the adapter with an empty array list. Now, anytime I want to update the list views data, I do the following.
The list view will be updated. Another way to do this is to add the data straight to the adapter instead of the list passed in.