0

我正在从GeoCoder GoogleMapApi中检索地址,在将结果传递给Spinner对象之前,我需要从列表中删除所有空条目。

我尝试了以下两种方法,但它们都没有任何区别:

locs.removeAll(Arrays.asList("", null));
locs.removeAll(Collections.singleton(null));

-

private List<Address> getAddress(double latitude, double longitude,int maxResults) {
    Geocoder gCoder = new Geocoder(getApplicationContext(),Locale.getDefault());
    try {
        locs = gCoder.getFromLocation(latitude, longitude, maxResults);
        locs.removeAll(Arrays.asList("", null));
        //locs.removeAll(Collections.singleton(null));
    } catch (IOException e) {
        e.printStackTrace();
    }

    return locs;

}
4

3 回答 3

1

只需使用此代码遍历列表

    for (int i = 0; i < locs.size(); i ++){
        if (locs.get(i) == null){
            locs.remove(i);
            i --;
        }
    }
于 2013-10-24T16:28:35.493 回答
0

尝试这个

    List locs = new ArrayList();
    locs.add("");
    locs.removeAll(Arrays.asList("", null));
    System.out.println(locs.size());

输出

0

和这个

    locs.add("");
    locs.removeAll(Collections.singleton(null));
    System.out.println(locs.size());

输出

1

它们是有区别的

于 2013-10-24T16:31:10.020 回答
0

for(int i=0;i<list.size();i++) { if(list.get(i)==null||list.get(i).equals(""))// in case of string only otherwise only one检查就足够 { 了 list.remove(i); i--; }`}

于 2013-10-24T16:34:19.017 回答