Questions tagged [firebaseui]

FirebaseUI is a set of binding libraries that simplifies developing applications for iOS, Android, Web and Flutter with Firebase.

FirebaseUI libraries are available for both Android, iOS, Web and Flutter and offers these features for all platforms:

Related tags

1862 questions
0
votes
1 answer

Firebase ios manage download with FirebaseUI

If I use FirebaseUI to download images, can we manage(pause, stop or resume) downloads. And also if I need progress, can I get the progress? My main problem is, is there a way to manage downlaods as tasks with using FirebaseUI?
isuru
  • 3,385
  • 4
  • 27
  • 62
0
votes
0 answers

Android FirebaseListAdapter not working even after adding listeners

So i am building a chat app using firebase. I got it to add the messages to the Firebase database. So the messages are being pushed but i wasn't able to display the message history or the newly sent messages on a RecyclerView. I searched around and…
Braavos
  • 51
  • 1
  • 1
  • 5
0
votes
1 answer

Images disappear after 11th item in RecyclerView

I have created a Firebase RecyclerView which contains a CardView. Inside the CardView there is an ImageView and a TextView. If an image is uploaded along with its descriptions (TextView) then both ImageView and TextView are visible, else only the…
0
votes
2 answers

Android: reading a value from a child with FirebaseUI

I am using FirebaseUI to get some values from my real-time database to Firebase RecyclerView. So.. my data looks like that: users: userid: info: Name:Muhammad I don't know how to get the value of Name which means…
0
votes
2 answers

Firebase AuthUI: NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/internal/zzbgl

My App crashes whenever I call this code: if (FirebaseAuth.getInstance().getCurrentUser() == null) { startActivityForResult( AuthUI.getInstance() .createSignInIntentBuilder() …
Jonas
  • 7,089
  • 15
  • 49
  • 110
0
votes
1 answer

FirebaseRecyclerView updating wrong items

I have a RecyclerView and you can add/delete items there. My problem is that the adapter shows the wrong item (does not update the item) that I selected to delete. I mean, in my database it deletes the right item, but on the application it's wrong…
0
votes
0 answers

Firebase RecyclerView Adapter App is Crashing: Android

I am working on an Android app. I use Firebase database. But I am stuck with a problem. My app crashes when I use FirebaseUI RecyclerViewAdapter. Here are all my dependencies: compile 'com.google.firebase:firebase-auth:11.0.1' compile…
0
votes
4 answers

Error while showing data from Firebase using RecyclerView

(Blog.class,R.layout.venue_row,BlogViewHolder.class,mDatabase) { This line in onStart () showing error. Here I posted the screenshot of error message. Please check this once. Error comes in the Activity.java file onStart()…
0
votes
0 answers

App crashes when trying to display data using FirebaseUI RecylerView

App crashes when i try to run this code. This page alone causes the crash. Do help me to solve this: no error when compiling, but running app fails. import android.content.Context; import android.support.v7.app.AppCompatActivity; import…
0
votes
0 answers

How do i populate a viewholder using firebase ui as populateViewholder has been removed?

I was following a tutorial on youtube to make a chat app and this fragment shows the list of friends but this method cant be used anymore. I have tried my whole night putting up the code together but couldn't. public class FriendsFragment extends…
0
votes
1 answer

Unable to filter query with multiple clauses using Firebase Realtime Database

I'm using Firebase Realtime Database with Firebase UI, however i'm not being able to search with multiple clauses. What i need is to take the Users that do not have an specific id. As i'm already filtering them by City i need to filter these ones…
user6246272
0
votes
1 answer

Save(cache) a cardview and it's detail view locally

I want to implement a “save“ option on cardview items. I want to know how can I cache/save a cardview so I still can interact with it even if it has been remove from database hence updated in the UI tab but still accessible locally in the SAVED…
Dr4ke the b4dass
  • 1,184
  • 2
  • 17
  • 40
0
votes
1 answer

How to create sticky headers in FirebaseRecyclerAdapter

I have a main recyclerview that I want to add headers to. This would have been an easy task if I created my own adapter, but I'm using FirebaseRecyclerAdapter from the firebase Ui library because of the advantages it has. My json data in firebase…
user7409907
0
votes
1 answer

How can i retrieve keys from Firebase and map it to its model instance

How can i retrieve the keys for my database entries and map them to my java objects, so that i can update the content of each individual object in the database? I want to retrieve the "TODO KEY" as represented in the JSON below. Database { "todos"…
0
votes
1 answer

Some Firebase UI Recylerview items showing wrong position after onItemRangeMoved event

I'm trying to setup a pop-up menu inside my firebase RecyclerView adapter. It works fine when the data is still and when new data is added. But, when an old item moves to the top, it messes up the positions. …
Bucky
  • 1,116
  • 2
  • 18
  • 34