我目前正在开发一个android应用程序,我使用firebase作为数据库,但是当in在ondatachange方法中获得变量并将其分配给全局变量时,我得到了空变量,但是当我在ondatachange方法中调用这些变量时,它们不是空的。
public class PositionateMarkerTask extends AsyncTask {
public ArrayList<Location> arrayList= new ArrayList<>();
public void connect() {
//setting connexion parameter
final Firebase ref = new Firebase("https://test.firebaseio.com/test");
Query query = ref.orderByChild("longitude");
//get the data from the DB
query.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
//checking if the user exist
if(dataSnapshot.exists()){
for (DataSnapshot userSnapshot : dataSnapshot.getChildren()) {
//get each user which has the target username
Location location =userSnapshot.getValue(Location.class);
arrayList.add(location);
//if the password is true , the data will be storaged in the sharedPreferences file and a Home activity will be launched
}
}
else{
System.out.println("not found");
}
}
@Override
public void onCancelled(FirebaseError firebaseError) {
System.out.println("problem ");
}
});
}
@Override
protected Object doInBackground(Object[] params) {
connect();
return null;
}
@Override
protected void onPostExecute(Object o) {
super.onPostExecute(o);
System.out.println("the firs long is"+arrayList.get(0).getLongitude());
}
}
最佳答案
欢迎使用异步编程,它会破坏您一直认为正确的一切。-)
firebase在后台自动检索/同步数据库。这项工作是在一个单独的线程上进行的,因此您不需要和AsyncTask
。但不幸的是,这也意味着你不能等待数据。
我通常建议您将代码从“先做A,然后再做B”重新定义为“只要我们得到A,我们就用它做B”。
在您的例子中,您需要获取数据,然后打印第一个项的经度。reframed,也就是说:每当您收到数据时,打印第一个项目的经度。
Query query = ref.orderByChild("longitude");
query.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
if(dataSnapshot.exists()){
for (DataSnapshot userSnapshot : dataSnapshot.getChildren()) {
Location location =userSnapshot.getValue(Location.class);
arrayList.add(location);
}
System.out.println("the first long is"+arrayList.get(0).getLongitude()); }
else{
System.out.println("not found");
}
}
@Override
public void onCancelled(FirebaseError firebaseError) {
System.out.println("problem ");
}
});
这里有几点需要注意:
如果您只对第一项感兴趣,可以将查询限制为一项:
query = ref.orderByChild("longitude").limitToFirst(1)
。这将检索较少的数据。我建议使用
addValueEventListener()
而不是addListenerForSingleValueEvent()
。前者将继续同步数据。这意味着,如果在列表中插入/更改项目的经度,则代码将自动被重新触发并打印(可能)新的第一个项目。关于android - 无法从ondatachange方法中获取值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38456650/