Questions tagged [fastadapter]

FastAdapter is an Android library providing a more convenient interface built on top of Android's adapters. It aims to increase development speed.

See also:

39 questions
0
votes
1 answer

Implement RealmModel while extending AbstractItem

I was using FastAdapter cause it's fun and relieves me from writing adapter classes. Here is a class: public class ProductsModel extends AbstractItem { But recently I want to use Realm instead of SQLite. So…
A. K. M. Tariqul Islam
  • 2,824
  • 6
  • 31
  • 48
0
votes
1 answer

Not able to change the image color of the image view

I need some help here. I am fetching the data from the JSON.Fetching data. It consists of images and text and I am using the Fast Adapter(mike penz) to populate into recycler view, but when I select the specified row from the recycler view, it needs…
0
votes
0 answers

Maintain a sorted list using realm in recycler view

I am pulling all my data from realm and displaying initially in a sorted list.Whenever items are added or removed or modified to this list i would like it to still be sorted.Is there a way realm can manage this sorted list internally and update the…
Jude Fernandes
  • 7,437
  • 11
  • 53
  • 90
0
votes
1 answer

The simple way to get original relative/global position from expanded FastAdapter

I use FastAdapter for RecyclerView, let say originally it is like this (all items are collapsed, so only the first level items are showed): Africa Asia Europe When user expands position 1 it becomes: Africa Asia Afghanistan Burma Europe How…
fikr4n
  • 3,250
  • 1
  • 25
  • 46
0
votes
1 answer

Using has method in the retrofit

Hi friends i cant able to understand how to do this method please help me out. i am using the retrofit for the Json parsing its working well when the data is there but when there is no data in it then the response will be different like below where…
0
votes
0 answers

How to implement ContextMenu on

I am using mikepenz/FastAdapter and 1 want to use context menu. I am trying to find override method like onCreateContextMenu, but I can't find it. Can anyone show me how to implement it?
0
votes
1 answer

Unable to remove exact name from the recyclerview when child is removed in Firebase

I have a RecyclerView in an activity and when the user opens this activity from their devices, there names are added to the recyclerview. Here's my code: mDatabase.child(rID).addChildEventListener(new ChildEventListener() { …
0
votes
1 answer

Unable to show all sets of data in RecyclerView retrieved from Firebase from under the keys which are retrieved before

In my code, I'm retrieving few keys stored under a reference and then using these keys I'm retrieving the data which are stored under these keys in the database. Here's my code: mDatabase.child("child").child(uid).addChildEventListener(new…
0
votes
1 answer

All the values from FirebaseDatabase are not getting assigned to long even in FastAdapter's bindView()

I'm trying to filter the content from FirebaseDatabase based on time and for that I have created a method and am calling it from the FastAdapter's bindView() of the RecyclerView. I'm subtracting currentTime from the startTime using this…
Hammad Nasir
  • 2,889
  • 7
  • 52
  • 133
1 2
3