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

FirebaseRecyclerAdapter check if Id is present in another table

I have two FirebaseRecyclerAdapters, one gets all the listattendees and the other gets all the people on the platform. I want the second FirebaseRecyclerAdapter to not show the people who are already a listattendee (so basicly all people minus…
2hTu2
  • 378
  • 4
  • 19
0
votes
1 answer

FirebaseRecyclerAdapter won't load

I'm having issues when I try to load up the list of food I implemented on my app. The list is there when I charge the app, but it has no content when there should be images and names of the various foods of the app. I looked it up and the problem…
0
votes
1 answer

FirebaseRecyclerAdapter firing twice

I have a problem using FirebaseRecyclerAdapater, at first it was working fine but now this adapter is firing twice. The database reference is only referring one child, but it is always firing twice. The Toast with text "counter" will appear…
0
votes
1 answer

FirebaseUI with create-react-app

I'm trying to use the firebaseUI library for authentication in a react app made with create-react-app. It works great in a standard html/js app but I can't get it to work with react. here is my simple login component: import React, { Component }…
Egor
  • 764
  • 2
  • 6
  • 11
0
votes
1 answer

Android Studio Firebase Memory Leak

I am currently developing a simple social media app that uses Firebase. The user will receive a feed of posts that contain images, his profile image will be displayed in corner of the screen and in the settings activity I created. The app works…
0
votes
1 answer

Not able to use the Firebase-UI snapshot releases

I would like to try out the Firebase-UI 3.4.0-SNAPSHOT release but cannot get this working. In my main build file, I added the following repo: allprojects { repositories { google() jcenter() maven { url…
0
votes
1 answer

FirebaseUI - Populate RecyclerView on Dynamic Query Data

I have a Collection in firebase that has a certain number of items, let's call it Collection "FOLLOWING". This number of items will constantly be changing. At any given time, I want to listen for the number of items in this Collection and create…
tccpg288
  • 3,242
  • 5
  • 35
  • 80
0
votes
2 answers

Error when showing to FirebaseRecyclerAdapter from firebase database

I'm trying to show data from my Firebase database to RecylerView and I'm following this tutorial http://www.programmingviral.com/firebase-recyclerview-tutorial/ @Override protected void onCreate(Bundle savedInstanceState) { …
YVS1102
  • 2,658
  • 5
  • 34
  • 63
0
votes
3 answers

FirebaseUI populate ListView text not displayed

I am populating a ListView of songs using Firebase database and Firebase-UI, all the dependencies are initialized correctly and the app is connected with the database but when it displays the list it doesn't display the text, just empty boxes like…
0
votes
0 answers

React cdn reference

I am using Firebase UI in my React App to allow users to login. Currently I have installed the firebaseui library using npm and then I use var firebaseui = require('firebaseui') at the top of my component and then I set up the ui with: var ui = new…
user2047485
  • 391
  • 5
  • 20
0
votes
1 answer

error: constructor FirebaseRecyclerAdapter in class FirebaseRecyclerAdapter cannot be applied to given types

I have the following code for a recyclerview using Firebase. The Recycler View uses the following adapter. FirebaseRecyclerAdapter recyclerAdapter= new FirebaseRecyclerAdapter
0
votes
1 answer

How to get correct RecyclerView ViewHolder after leaving the activity

I have a recyclerview and I populate data on it using firebaserecycleradapter. Every item in the list contains reference to firebase storage. So When I click on download button (red button), the download start and I can get informations about the…
0
votes
1 answer

Check for "no documents" state or empty data-set in FirebaseUI's FirebaseRecyclerAdapter

I wrote a custom FirebaseRecylerAdapter, based on FirebaseUI documentation like this: class FavoritesAdapter(lifecycleOwner: LifecycleOwner) : FirebaseRecyclerAdapter(buildOptions(lifecycleOwner))…
0
votes
2 answers

FirebaseRecyclerAdapter

I am working on a chat app using Firebase. to display messages, I am using a recyclerView and a FirebaseRecyclerAdapter for it. The problem is that I want to change the layout associated to this FirebaseRecyclerAdapter depending on the sender of the…
0
votes
1 answer

How can I set a filter in a FirebaseUI RecylerAdapter when querying the database?

I use a FirebaseDatabase that holds "categories" and related "details" like this: Note: categoryId in "categories" acts as primary key for "details". My DetailAdapter works with FirebaseUI's RecyclerAdapter using this query: class…