addValueEventListener(this)在RedMI 4中不起作用。如果有人遇到这个,请在这种情况下帮助我。 所有其他设备(如MOTO G3,SAMSUNG等)的代码相同。
query.addValueEventListener(this);
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot postSnapshot: dataSnapshot.getChildren()) {
Leagues league = postSnapshot.getValue(Leagues.class);
mLeagues.put(league.getId(),league);
}
adapter.adapterNotifyDataSetChanged(mLeagues);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}