【发布时间】:2016-02-26 17:26:01
【问题描述】:
【问题讨论】:
-
我建议您将
CardView用于这些目的的列表项。
标签: android listview android-mapview
【问题讨论】:
CardView 用于这些目的的列表项。
标签: android listview android-mapview
这可能会对您有所帮助。将其与图像相同,并将图像 url 替换为此 url 并传递给您 lat/long。
AQuery aq = new AQuery(activity);
String url = "http://maps.googleapis.com/maps/api/staticmap?zoom=12&size=560x370&markers=size:mid|color:red|"
+ item.getLattitude()
+ ","
+ item.getLongitude()
+ "&sensor=false";
aq.id(ImageView).image(url, true, true, 0,
0, null, AQuery.FADE_IN);
【讨论】: