如何使Android应用程序只显示一组特定的公司

时间:2013-07-14 10:55:42

标签: android android-mapview

该应用程序只是在我的应用程序中显示地图视图上的沃尔玛商店,当我点击每个商店时,我获得有关商店的更多信息,更像是“沃尔玛商店定位器”我知道如何在谷歌地图V2上创建Android应用程序和一些知识。 P.S:沃尔玛只是一个例子。感谢

1 个答案:

答案 0 :(得分: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。