-1

该应用程序只是在我的应用程序中仅在 mapview 上显示沃尔玛商店,当我单击每个商店时,我会获得有关商店的更多信息,更像是“沃尔玛商店定位器”我知道如何创建 android Google Maps V2 的应用程序和小知识。PS:沃尔玛只是一个例子。谢谢

4

1 回答 1

0

由于您的问题不是很具体,所以我给出一个大致的想法。您可以有一个自定义类来存储有关商店的所有相关详细信息。

public class StoreListItem {
    private String store_id = null;
    private String city = null;
    private String store_type = null;
    private String name = null;
    private String store_address = null;
    private double latitude;
    private double longitude;
    private Bitmap defaultMarker = null;

    public StoreListItem(...) {
        // Constructor
        // Initialize the elements with incoming values
    }

    // Any other getter/setter methods 
}

然后您可以使用此 ArrayList 本身,或创建新的标记列表,该列表将通过 store_id 或您可能拥有的任何标识符链接到此 StoreListItem。

于 2013-07-14T11:34:05.430 回答