All Questions
448 questions
0
votes
1
answer
90
views
firebase database user submitted posts retrieve to android recycler view in date wise
This is my HomeView Fragment Activity
public class HomeView extends Fragment {
private View view;
private RecyclerView recentPosts;
private DatabaseReference donor_ref;
FirebaseAuth mAuth;
private ...
0
votes
0
answers
25
views
RecyclerView error, Inconsistency detected. Invalid view holder adapter positionVideoViewHolder [duplicate]
so i know this is a pretty know error regarding recyclerview and yes i looked for solutions on previous posts but they are very specific for each case so i bring mine to the table. So this is my issue,...
0
votes
2
answers
53
views
RecyclerviewAdapter using firebase doesn't sort correctly for more than 5 items
I'm experiencing an issue with my RecyclerView adapter. When I have fewer than 5 items in my Firebase database, the adapter works perfectly, and tapping an item displays the correct details. However, ...
0
votes
0
answers
29
views
Firestore Recycler view position error when going back from activity to recyclerview
i'm working on an application whith restaurants, i have in my mainactivity a recyclerview with firestore, populated with a realtime database, when i click on a card it activate a onitemclicklistener ...
0
votes
0
answers
21
views
recyclerView disappear when return to fragement
when i start the fragment first the recyclerView works fine but when i switch to other fragments or activities then return back the other views works fine but the flock cards recyclerView disappears (...
0
votes
0
answers
26
views
Recyclerview is not showing while fetching from the firebase storage
i am trying to fetch the data from the firebase storage which is generally some audio file, i just try to fetch into recyclerview but recycler view is not showing. why my recycler view is not showing, ...
1
vote
1
answer
47
views
android java Display ads from firebase realtime database after every 2 blog posts
I have the following Firebase Realtime Database, which has parts inside the root:
1: blog_posts
2: Ads
root
blog_posts
post_id_1
title: "Blog Post 1"
content: "Content of Blog Post ...
0
votes
2
answers
73
views
Firebase Recycle View is not showing data only blank dull white background in Android Studio
I following this Tutorial series on building chat app in android studio and I build a recycle view attached with Firebase database but It's not showing up. You can see in this image, It only shows the ...
0
votes
1
answer
45
views
Could not retrieve data from firebase real time database
I am working on an Android application. In my application, there is a GetSupportFragment.java. The fragment contains recycler view that has cardviews in it. In each card view, there will be centerName,...
0
votes
0
answers
37
views
paging from firebase realtime database to recycler view
the pagination works fine but when i get to the last item i want to stop loading more,it loads the same data again and again.If u can in the first load database method i want to load only the new data ...
1
vote
0
answers
19
views
Recycler View is not fetching the data from database also there is not any exception
Recycler view is not fetching data from firebase realtime database the codes are attached of Adapter class and main activity class.
Main Activity Class:
public class MainActivity2 extends ...
0
votes
1
answer
27
views
Storing Strings from Firebase as a List of String in Shared Preferences
I am developing an app that retrieves strings from Firebase when launched. These strings are then stored in a shared preference. Later, the app retrieves the strings from the shared preference and ...
2
votes
1
answer
244
views
RecycleView gets corrupted after record delete
I have Android RecyclerView showing some locations via RecyclerView.Adapter and ArrayList of Pair of Boolean and PlantRecord:
package com.mikroelektronika.guestnotificationsystem.Database;
import ...
0
votes
1
answer
35
views
How to retrieve nodes named from firebase Realtime database into RecyclerView
I am developing an app that has a list of prayers under which I have more nodes and those nodes have more nodes, how do I retrieve only the node list and not the data inside the node?
For example in ...
0
votes
2
answers
1k
views
Failed to convert value of type java.util.ArrayList to String
If I add a Section in this database it says "Failed to convert the value of type java.util.ArrayList to String"
I am using recyclerviewoption query to display only the current user data.
I ...