在GeoFire和Firebase查询中执行功能时出错

时间:2016-03-06 01:18:15

标签: android arraylist firebase geofire

我使用Firebase查询附近的位置,当我执行systemPrint时结果是正确的。但是当我尝试创建一个新的Location项并将其放在一个全局声明的arrayList中时,然后遍历ArrayList来打印它。它没有打印。我尝试了类似于hashset的东西,我声明了一个全局hashset,并尝试将id和geolocation添加到它,然后遍历它,它没有打印。

这是我执行systemPrint时的打印输出:

03-05 21:42:16.225 12604-12604/? I/System.out: aa6b6c55-40da-416e-bbc0-626f10d2db80 51.02878131 -114.13542057
03-05 21:42:16.262 12604-12604/? I/System.out: 1f682c8b-be9a-4310-aa92-216f041f0547 51.02933723 -114.13514678
03-05 21:42:16.262 12604-12604/? I/System.out: 707a5af3-8fa0-4f69-b88f-593a0acd3ee8 51.02933723 -114.13514678

我全局设置了这个arrayList

List<Locations> locationList;


in onCreate(){
......
locationList = new ArrayList<>();
......
}



 geoFire = new GeoFire(new Firebase("https://xyz.firebaseio.com/locations/"));

        GeoLocation center = new GeoLocation(location.getLatitude(), location.getLongitude());
 final HashSet hs = new HashSet();
        GeoQuery geoQuery = geoFire.queryAtLocation(center, 5);
        geoQuery.addGeoQueryEventListener(new GeoQueryEventListener() {
            @Override
            public void onKeyEntered(String username, GeoLocation location) {

                System.out.println(username + location.latitude + location.longitude);

                Locations eachLocation = new Locations();
                eachLocation.setId(username);
                eachLocation.setLatitude(String.valueOf(location.latitude));
                eachLocation.setLongitude(String.valueOf(location.longitude));

                locationList.add(eachLocation);


//
//                }

            }

            @Override
            public void onKeyExited(String username) {
                usersNearby.remove(username);
                // additional code, like removing a pin from the map
                // and removing any Firebase listener for this user
            }
            @Override
            public void onKeyMoved(String s, GeoLocation geoLocation) {

            }

            @Override
            public void onGeoQueryReady() {

            }

            @Override
            public void onGeoQueryError(FirebaseError firebaseError) {

            }
        });

    for (Locations x: locationList){
        Log.i("eachLocation", x.getId() + x.getLatitude() + x.getLongitude());
    }
System.out.println(hs);

这是我的Locations类

public class Locations {
    String id;
    String latitude;
    String longitude;

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

public String getLatitude() {
    return latitude;
}

public void setLatitude(String latitude) {
    this.latitude = latitude;
}

public String getLongitude() {
    return longitude;
}

public void setLongitude(String longitude) {
    this.longitude = longitude;
}

}

*****更新 - 我还注意到另一种模式,我无法在另一个Firebase查询中执行功能****

我声明了一个全局userCountry变量userCountry,然后我运行一个查询 获取已保存的用户所在国家/地区。在函数内部,它记录正​​常。但是,当我尝试将国家/地区值设置为userCountry,并将其记录在查询之外时,我的应用程序在NullPointerException上崩溃并出错。我需要全局设置userCountry,以便将其作为参数提供给另一个查询。

String userCountry;


 ref = new Firebase("https://xyzChat.firebaseio.com/users/" + intent.getStringExtra("userId") + "/country");

    Query queryRef = ref.orderByChild("country");

        queryRef.addValueEventListener(new ValueEventListener() {
            @Override
            public void onDataChange(DataSnapshot dataSnapshot) {
                Log.i("userCountry", String.valueOf(dataSnapshot.getValue()));
                userCountry = String.valueOf(dataSnapshot.getValue());
            }

Log.i(&#34; secondUserCountry&#34;,userCountry);

2 个答案:

答案 0 :(得分:1)

事件在GeoFire中异步触发。因此,当您打印locationList时,它仍然是空的。您需要等到onGeoQueryReady被调用,直到添加了所有元素。如果将日志代码移动到那里,它应该打印所有位置。请注意,每次更新查询时都会调用onGeoQueryReady

答案 1 :(得分:-1)

覆盖“位置”类中的 toString()方法。 在“位置”类中添加此代码..

 @override
public String toString ()
{
    Return "id:"+this.getId ()+",  Latitude:"+this.getLatitude ()+",  Langitude:"+this.getLangitude ()+"\n";
}

现在更改你的代码..删除循环...而不是这段代码

Log.i("eachLocation", x.getId() + x.getLatitude() + x.getLongitude());

只需使用..

Log.i ("eachLocation",hs);

现在你的代码应该可以正常工作......