Questions tagged [cardslib]

cardslib is a Library that provides an easy way to display a UI Card in Android apps. Display single cards, list of cards and grid or staggered grid of Cards.

cardslib is a Library that provides an easy way to display a UI Card in Android apps. Display single cards, list of cards and grid or staggered grid of Cards.

Card Library provides 5 custom tags:

  • CardView to display a UI Card.
  • CardListView to display a List Card.
  • CardGridView to display a Grid Card.
  • StaggeredGridView to display a Staggered Grid Card.
  • CardListDragDropView to display a List Card with drag and drop support.

It requires API 14+

Links:

86 questions
0
votes
1 answer

Android Cardslib same thumbnail appears for all items

I'm using Cardslib library. I was trying to add thumbnail view for each pacakge from its icon. Icon is Drawable type. So I assume, we need to use CustomSource to create a Bitmap of it. Then add it to the card. The problem with the below code is, all…
webminal.org
  • 44,948
  • 37
  • 94
  • 125
0
votes
0 answers

Cardslib : use the demo project

I use the Cardlib library in my project. There is an other project in the github repository which named "demo". I'm interested in using the StickyCardListView of the project "demo". But being a novice android developer as I am, I have no idea how I…
Charstar
  • 113
  • 8
0
votes
0 answers

how can I have a custom CardArrayRecyclerViewAdapter to have different layout inside my RecyclerView

I'm using cardslib libarary, Is it possible to have a different layout inflated inside my CardArrayRecyclerViewAdapter? I'm getting stuck at the Holder part, I'm not sure how can I do it
RedEagle
  • 2,358
  • 3
  • 13
  • 18
0
votes
1 answer

Different Layouts inside CardsWithList cardslib Library

Im using Cardslib inside my project Is it possible to inflate another Layouts inside the CardsWithList? I want to add a somekind of footer at the end which would be clickable to open another fragment
RedEagle
  • 2,358
  • 3
  • 13
  • 18
0
votes
1 answer

How to add cards with different layouts using CardArrayRecyclerViewAdapter?

How can I add cards with different layouts using CardArrayRecyclerViewAdapter. Specifically I am interested in having a header followed by cards with different layouts?
user1443317
0
votes
0 answers
0
votes
0 answers

Title and Subtitle Not Showing in Material Card, CardsLib for Android

I am Using cardslib for android Main Activity Layout,renew_Card is the Material Card with Large Image
BLACKMAMBA
  • 675
  • 2
  • 11
  • 28
0
votes
0 answers

Build issues with cardslib using eclipse

I am a newbie in android dev and using Eclipse for now. I am trying to use Cardslib library but even after following the mentioned steps, I am unable to build the library successfully. Specifically after the following step: - mark java(*) folder as…
0
votes
1 answer

CardListView gets the same image in all its CardViews after iterating sqlite rows

I'm using cardslib library in my Android Studio project. I'm working on a CardListView. I'm retrieving each CardView information from an sqlite database row which has a BLOB field (used to store images). As shown in this picture, after filling…
AndroWeed
  • 133
  • 2
  • 12
0
votes
1 answer

How import CardsLib lib into eclipse?

CardLib have the following link : library I have problem when I try to import in Eclipse. Segui also this link: Link de Youtube But without any good result I hope you can help me or some other library to use it. Thank You
0
votes
0 answers

How to add an expandable card to another expandable card?

I'm working on a project where I need to show only the basic information to the user and if he chooses to see more, he can tap on the card and the expand card will drop down. This functionality has been achieved by using 'addCardExpand'. However, I…
Nairiya
  • 33
  • 1
  • 5
0
votes
1 answer

Expand inside card in cardListView in android

I am using cardslib to show expandable list of cards in cardListview, so the problem is when I tap on card it expands always at the bottom of the card but I want the card should expand inside my custom card layout(as shown in…
Vivek Singh
  • 1,201
  • 3
  • 17
  • 39
0
votes
0 answers

Cardslib padding - native_list_card_layout

im not sure why the cards inside the grid i have always have that 1dp of padding. I cant find which attributes to remove it. This is the grid code that i am using:
EggRollMan
  • 583
  • 1
  • 8
  • 20
0
votes
0 answers

How can I get cardslib into eclipse

hope someone knows better. Since hours I try to include the cardslib - https://github.com/gabrielemariotti/cardslib, unfortunately without success. When I want to including as it's described in the…
new Android
  • 27
  • 1
  • 6
0
votes
0 answers

cardslib out of memory error

I instance of lots of different type of cards which is the subclass of Card. I use a List to collect them. every time, the listview being instance. I request to server and server responce me json to instance every type of cards. After that I using…