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

FirebaseRecyclerView doesn't execute methods

I REALLY have read all examples of the same problem but nothing helps I think mistake somewhere in another place. So the problem is that methods of recyclerview doesn't execute and list doesnt populate with data. Example I took from this…
0
votes
1 answer

How do i put a database reference into firebaselistadapter? i am getting an error when i put ref as in the code below

I need to add a database reference to the list adapter how do i do that from this code private void populateTheData() { ListView listView=(ListView)findViewById(R.id.lstView); DatabaseReference…
0
votes
1 answer

TransformException : java.util.zip.ZipException: duplicate entry: com/google/android/gms/auth/api/signin/zze.class

After updating the Firebase SDK to 11.8.0, I am getting that error.Please help me in resolving this. buildscript { repositories { jcenter() maven { url 'https://maven.fabric.io/public' } } dependencies { …
0
votes
0 answers

RecyclerView is mess for lower than a Second

I have a working RecyclerView...In onResume I startListening()... The Problem is, that the FirebaseRecyclerView is mess when I resume the Activity for lower than one second. So I start the App and see the unsorted RecyclerView and after lower than a…
0
votes
0 answers

How to return to previous position of recyclerview

How to return to previous position of recyclerview when item is clicked and then the user moves back to recyclerview just like Youtube When user watch the video it return to previous item not from top FirebaseRecyclerAdapter…
0
votes
1 answer

Cannot Access Recyclerview Position Using FirbaseUI with Cloud Firestore

I am migrating my application from the Firebase Database to the Firebase Cloud Firestore. Previously, I was using the FirebaseUI for the realtime database. After initializing all of my options and creating the adapter in the realtime database, I…
tccpg288
  • 3,242
  • 5
  • 35
  • 80
0
votes
1 answer

Firebase UI loading box

When you launch FirebaseUI using intent, for a second you can see a popup showing you information that it's loading. Is there a way to change the message and style of the popup?
Dawid Cyron
  • 162
  • 1
  • 1
  • 11
0
votes
0 answers

FirebaseAuth.getInstance().getCurrentUser().getPhotoUrl() returns null for Google user with profile picture on Emulators

I'm using Firebase UI to sign-in the users of my app. When a Google user signs in, I would like to retrieve the profile picture (for use in my GUI). However, for all Google users the method FirebaseAuth.getInstance().getCurrentUser().getPhotoUrl()…
Peter
  • 10,910
  • 3
  • 35
  • 68
0
votes
2 answers

Displaying CardViews inside a RecyclerView using FirebaseUI and Firebase database

I am trying to display CardViews inside a RecyclerView, each card will represent a cheese object. This cheese object has 6 instance variables. This is my Cheese.java : public class Cheese { private String CheeseName; private String…
0
votes
1 answer

Not getting all results for RecyclerView from firebase

My app has two categories of users shop owner and buyers. When shop owner adds a shop I use his UID and then pushkey to add a shop like this: In the Image "83yV" and "FmNu" are the shop owners and they add 2 and 1 shop respectively. Now for buyers,…
0
votes
1 answer

Firebase UI 3.2.1, FirebaseRecylcerAdapter, check if the Database Ref has child

Now that FirebaseRecyclerAdapter allows us to override methods, do we have any method that could be overridden to check if there is a child present under Database Reference node? If there is no child we should be able to update UI accordingly. Until…
Nishanth Sreedhara
  • 1,266
  • 1
  • 19
  • 34
0
votes
1 answer

FirebaseRecyclerAdapter not displaying data (in my case All users) from the database

In this On start method I am trying to display the List of all Users from the Firebase Realtime database, but it is not showing any users at all. No error on the Logcat. @Override protected void onStart() { super.onStart(); …
0
votes
2 answers

How to avoid the refresh effect of the FirebaseRecyclerAdapter

Refresh effect to the FirebaseRecyclerAdapter while typing in the text field that loads data in an Autocomplete manner. I used to call the the following function firebaseUserSearch withe help of onTextChanged method to fill the adapter. At each…
0
votes
1 answer

Android studio Firebase UI Custom listview layout

I was wondering if the firebaseUI accepts custom layouts for listview? so if i make a layoutfile and add can i populate it as shown in documents? e.g private ListView mListView; @Override protected void onCreate(Bundle savedInstanceState) { …
0
votes
1 answer

Add progress indicator to FireStoreRecyclerAdapter and maintain recyclerviev visibility after app resume

I am using firebase to build my apps, however, when I open the app, it takes some time to show in recyclerview. Also,when I resume the activity after some time the recyclerview does not show. How can I add progress indicator to appear to the user…
Geek Guy
  • 710
  • 1
  • 8
  • 28