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

FastAdapter Combine Headers and items

I usage library fastadapter by mikepenz https://github.com/mikepenz/FastAdapter Need combine diferents views Header 1 Item A Item B Item C Hader 2 Item D Item E .... Class for item open class SimpleItemVB :…
Codelaby
  • 2,604
  • 1
  • 25
  • 25
0
votes
1 answer

Expanding nested items FastAdapter

I cannot find a way to expand nested items using FastAdapter library. Example: Category 1   -- Subcategory 1 // Subitem of category     ++ SubSubCategory 1 // Subitem of subcategory     ++ SubSubCategory 2   -- Subcategory 2     ++ SubSubCategory…
0
votes
1 answer

Android FastAdapter ClickEventHook isn't working properly

I am seeking forgiveness for this simple problem. I am using FastAdapter for the first time and I am new to Kotlin. Let me share the problem. I have a layout for the recyclerview item holder, an adapter which extends AbstractItem class. Actually I…
kaunj2020
  • 51
  • 8
0
votes
2 answers

FastAdapter: Undo button does not show up after swipe

I am trying to use a swipeCallback on a list with modeladapter. In order to make it work, I stripped down all my customization and modeled it close to the sample app, but the combination produces the error of not allowing undo. When I swipe, this…
Apfelsaft23
  • 316
  • 2
  • 23
0
votes
1 answer

How to use swipe for adding to favorites in checkbox in FastAdaper Android?

I want my RecyclerView Item swipe left and there must be shown star-styled checkBox to add to favorites list. I am using FastAdapter by Mike Penz. How can I do that?
0
votes
1 answer

Issues when using Android Room together with Mike Penz Fastadapter

I am trying to use Mike Penz Fastadapter. According to the ReadMe, the first step is to have a model class that extends "AbstractItem" from his library. I did that on my Room entity class, because that is the item that I want to have in the…
Apfelsaft23
  • 316
  • 2
  • 23
0
votes
1 answer

How to update views in a custom PrimaryDrawerItem?

I am using MaterialDrawer (and also FastAdapter) to create left and right drawers in my app and currently I use a compact style account header in the right drawer (see the green area with user photo in the below screenshot). However I need few more…
0
votes
1 answer

Showing more details in RecyclerView + FastAdapter, when the item has been clicked

In an app using FastAdapter and ConstraintLayout I display a list of completed games (pardon the non-english characters in the screenshot): When the app user clicks an item in the list (anywhere in the item), I would like to display an image view…
0
votes
2 answers

RecyclerView pushes checkboxes out of the screen

In an Android app using FastAdapter I am trying to display 3 checkboxes underneath a RecyclerView. This should give the user a possibility to filter the list of games by wins, losses, draws. However the full screen height is filled by the…
0
votes
1 answer

Gradle warning : It looks like you are trying to substitute a version variable, but using single quotes ('). Trying to use Fast Adapter Library

Good day, I am trying to use Fast Adapter library in my project. I read the installation guide from this link https://github.com/mikepenz/FastAdapter. The synchronization of my project successfully built but I got this warning (captured link) that…
0
votes
0 answers

How to improve RecyclerView that has complex ViewHolder with EndlessScroll

I am working on project which has a complex recyclerview .its similar to instagram post feed. i use mikepenz/FastAdapter for recyclerview adapter, which has pretty smooth scrolling. but when i starts to append the news items to the adapter the…
inval
  • 380
  • 1
  • 4
  • 11
0
votes
1 answer

Setup mikepenz/fastAdapter

I am trying to implement mikepenz/fastAdapter and I dont understand it from the github page. He is using butterknife which I also never used before. Can anyone explain to me what I have to do to setup a sample recycler view with this adapter. Also…
Stein.
  • 1,412
  • 2
  • 10
  • 18
0
votes
0 answers

NoSuchElementException when updating the adapter items using FastAdapter

I am using FastAdapter on my application to render a list of items, which are read from a remote API. At the onCreateView on my fragment, I set up the adapter this way: FastAdapter fastAdapter = new…
Nicolás Arias
  • 1,053
  • 1
  • 12
  • 29
0
votes
1 answer

How to toggle the view color in Fast Adapter library

I want to implement multi select adapter for my recycler view. I m using Mike Penz's FastAdapter for the same. I am not sure on how to toggle the selected item view color. Here is the code snippet, attaching a ClickEventHook to the card…
0
votes
1 answer

ViewHolder with a constructor which takes a view recycler view

Hi Friends i had struck in this problem from 2 days i dont know whats the problem here i am using the Fast Adapter by mikepenz where i have two recycler view in this.Here i am getting this error java.lang.RuntimeException: You have to provide a…