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
3 answers

notifyDataSetChanged() not working for FirebaseRecyclerAdapter

Deleting items from FirebaseRecyclerAdapter was working fine till I shift to an MVP pattern. right now the adapter is not notifying the change and throwing an error. How can I solve this issue. Here is my FirebaseRecyclerAdapter, @Override …
0
votes
1 answer

How to Implement On-Click Listener in Firebase-ui ListVeiw?

I've been using ListVeiw implementation provided by Firebase-ui available in this link. I intend to put a OnClick Listener for each row.When pressed it should change background color, But I could not find any way to get it done.Any help would be…
Tupio
  • 432
  • 7
  • 19
0
votes
1 answer

Android - Firebase Database Quickstart Gradle Project Sync Failed

I am trying to build this project Firebase Database Quickstart, but I am facing error in App level build.gradle file. Here is my error message By searching google and stackoverflow i found some solution then i add this…
0
votes
1 answer

Query for documents containing subcollection

Is there a way to query for all documents containing a specific subcollection (or alternatively any subcollection at all) in a single query? This answer: Is possible to check if a collection or sub collection exists? suggests using the document…
mawall
  • 171
  • 3
  • 10
0
votes
1 answer

recycler view is not attached blank screen

whenevr clicking on foodmenu it shows blankscreen my code is properly written in firebase recyclerview adapter Picture 1: Picture 2 will give the error blank screen: what changes has to be done in this foodList.java class ,i tried using firebase…
0
votes
3 answers

Receiving imgs from firebase to RecyclewView

my RecyclerView is not showing stored images onFirebase. For more user friendly management my data I use FirebaseUI and for loading my imgs I use GLIDE (GlideApp approach). so: MANIFEST:
htw
  • 1,065
  • 7
  • 11
0
votes
1 answer

FirebaseUI - Incompatible types: String cannot be converted to DatabaseReference

I got Incompatible types: String cannot be converted to DatabaseReference error in onItemClick for getting Firebase Database Key. The code I use to populate ListView from Firebase Database mListView = (ListView)…
phwt
  • 1,356
  • 1
  • 22
  • 42
0
votes
1 answer

Firebase Database populate child data into ListView using FirebaseUI

I want to populate a child data in Firebase Realtime Database into ListView using FirebaseUI. My Database structure is like this. - Personnel - 00 - Name: "Wallace" - DOB: "11/21/87" - 01 - Name: "Carl" - DOB:…
phwt
  • 1,356
  • 1
  • 22
  • 42
0
votes
1 answer

TaskExecutionException: Execution failed for task ':app:transformClassesWithMultidexlistForDebug'

I recently updated my Build.Gradle and Build Tools, and now my app will not build successfully. Below is the associated error, I believe it has to do with multidex. I understand that it could also be the interaction of all the third-party…
tccpg288
  • 3,242
  • 5
  • 35
  • 80
0
votes
1 answer

Set start position in my RecyclerView when using FirestorePagingAdapter

I'm using Firestore as a database and RecyclerView combined with FirestorePagingAdapter to present data in my Android app. Data presented is sorted by date and I'd like to set default start position for RecyclerView to show a recent object.…
0
votes
1 answer

FirebaseUI 3.0.0: Override `onDataChange` method in new version of `FirebaseRecyclerAdapter`

As per Firebase UI 3.0.0 in FirebaseRecyclerAdapter we have to override onDataChange method, but how do I retrieve data in it? @Override public void onDataChanged() { super.onDataChanged(); } Can anyone explain what I need to…
0
votes
1 answer

listview not showing my message after launching activity

anyone is thier who can help me ? listview not showing my message after launching activity ,i am trying to create chatting application , i have created chat application successfully , then later for advertising i have added some dependencis and it…
Jayesh Thakkar
  • 113
  • 2
  • 12
0
votes
0 answers

FirebaseRecyclerAdapter class

I have problem with Firebase Recycler Adapter. I am following this tutorial Food Order Tutorial. When I create loadMenu() method and following the steps one by one, Recycler Adapter didn't work exactly same as in video so here's my code. Can someone…
user8400216
0
votes
0 answers

StackOverflowError when using FirebaseRecyclerAdapter

I'm using a new version of FirebaseRecyclerAdapter (firebase-ui-database:3.1.0) to populate a RecyclerView. This is my mainActivity: DatabaseReference mFirebaseDatabaseReference; ChatFirebaseAdapter firebaseAdapter; mFirebaseDatabaseReference =…
Neo Algeria
  • 235
  • 2
  • 3
  • 13
0
votes
1 answer

Click twice bug when signing out of Firebase AuthUI

Click twice bug when signing out of Firebase AuthUI: When I click "Sign out", it toasts "You're signed in." When I click "Sign out" for the second time, it returns to SignInActivity. MainActivity.java case R.id.menu_sign_out: …
Jack Wilson
  • 6,065
  • 12
  • 29
  • 52