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

Get data from Firebase and make it a top 100 ranking activity

here my codes: private RecyclerView recycleRank; private LinearLayoutManager layManRank; private FirebaseRecyclerAdapter recAdapterRank; ... DatabaseReference personsRef =…
Hansi
  • 97
  • 3
  • 13
0
votes
1 answer

How do I bypass the welcome screen UI and present only the phone auth UI screen in Firebase Auth?

How can I present the viewController which is responsible for collecting phone number data in FirebaseUI rather than the welcome screen? With the current set up I am presented with a Welcome screen. class Login: UIViewController,…
bibscy
  • 2,598
  • 4
  • 34
  • 82
0
votes
1 answer

Change Query in Firebase Recycvlerview

Hey Guys i try to change the Query in Firebase depending on the selected user. But when i update the Query the Recyclerview stops showing data. Below is my Code. I would really appreciate if someone could take a look. I'm using the Recyclerview…
0
votes
1 answer

Recyclerview not showing firebase data

Code public class PieOptions extends Service { WindowManager wm; RelativeLayout ll; LayoutInflater li; String UID; String mFriend; private String userName; private FirebaseAuth mAuth; private FirebaseUser…
user10238140
0
votes
0 answers

DatabaseException: Can't convert object of type java.lang.String to type android

This is the error: E/AndroidRuntime: FATAL EXCEPTION: main Process: com.md.HeartOpen, PID: 31667 com.google.firebase.database.DatabaseException: Can't convert object of type java.lang.String to type…
0
votes
1 answer

App crashes on its very first run when using Firebase with onesignal

lately, i have upgraded my firebase and onesignal dependencies to the latest versions, but a strange thing happens, after the app installs for the first time, and i open it, it directly crushes after 1-2 seconds, but when you open it up again the…
0
votes
2 answers

Use different layout for text and image in recyclerview from firebase database?

I want to use a different layout for data which is contain text only and text + image in Recyclerview. I have created two layout, layout_post for text only data, and layout_post_with_image for text + image data. so far my code is working to show of…
0
votes
0 answers

exitFreeformMode: You can only go fullscreen from freeform

when we run this code app is crashing and if I remove this code app work without any problem why this is happening? what is wrong here? mAuth=FirebaseAuth.getInstance(); //_FirebaseImageUploader m_FirebaseImageUploader; …
Midhilaj
  • 4,905
  • 9
  • 45
  • 88
0
votes
2 answers

Unable to get child of Current User Id for RecyclerView

I want to set RecyclerView with Child of Current User Id by using getCurrentUser().getUid().The data structure you can see in image below, In image above, SQyOq80egYehjqx4sgiyeNcW8P02 is current userId and I want to get all child of those id and…
0
votes
1 answer

What happens if I never call stopListening() on firebaseUI recycler adapter

If I don't provide an activity to manage the lifecycle, and instead do it manually but never close the adapter by calling stopListening(), what happens?
Dodd10x
  • 3,344
  • 1
  • 18
  • 27
0
votes
1 answer

RecyclerView keeps scrolling up whenever new item is added. How to fix this?

So, I have a recyclerview that displays a list that is fetched from my Firebase database. But, each time a new item is added, the recyclerview scrolls upwards for no apparent reason. How do I fix this? I have gone through all the solutions on…
Asdf Adf
  • 1
  • 2
0
votes
2 answers

Firebase UI - custom SnapshotParser is skipped by compiler

So, I am using Firebase UI to get data from Database. It looks like this: I want to iterate through "messages" to get every child, and show it as message at my app. This is how my UserMessage class looks alike: public class UserMessage { private…
0
votes
1 answer

How can I use FirestorePagingAdapter and options in my project?

I am trying to begin with FirestorePagingAdapter and FirestorePagingOptions and I read the documentation carefully like here https://github.com/firebase/FirebaseUI-Android/tree/master/firestore and applied it by step by step 1- implementation…
Amr Mahmoud
  • 122
  • 1
  • 15
0
votes
1 answer

Firebase Equals Query With List Android Studio

I'm getting all users of the app in a list but I want to show only the users that are existing phone contacts; so I have all phone numbers in a list and I want to query if they exist in the contact list but I can't find a way to do it. I want to…
0
votes
0 answers

Firebase Recycler Adapter Indexing problem

here is my database structure : Users : UId1 >> name , age , online Uid2 >> name , age , online Friends : Uid1 >> Uid4 , Uid3 UId2 >> Uid4 I used FirebaseRecylceradaptper with index query the indexed query is Friends/Uid1 to get all…