Reputation: 4987
Is there any option to get how much data downloaded and how much time left
When using firebase realtime database
ValueEventListener valueEventListener=new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
};
Upvotes: 1
Views: 20
Reputation: 317467
No, there are no progress or status notifications for Realtime Database listeners.
Upvotes: 1