An open source library offering the popular Google Now & Google Play cards views
This new type of card based on the new Google play design are highly customizable.
The parameters include :
- Title text (String)
- Description text (String)
- Title color (String)
- Stripe color (String)
- Menu overflow (Boolean)
- Touch feedback on click (Boolean)
Here is an example :
mCardView.addCard(new MyPlayCard(
"Different Colors for Title & Stripe",
"You can set any color for the title and any other color for the left stripe",
"#f2a400", "#9d36d0", true, false));
In addition to the Google Play cards, I made a few changes to the original library by Nadav Fima.
Those changes include :
- Ability to set regular cards's description text programmatically
Called like this :
mCardView.addCard(new MyCard("title string", "description string");
- Ability to set stack titles's color programmatically
Called like this :
CardStack stack = new CardStack();
stack.setTitle("Card Title");
stack.setColor("#33b5e5");
mCardView.addStack(stack);
I'm working on a supplementary example app for the CardsUI library. This app includes a little daemon to generate cards and set their parameters with a nice animated gui. Ultimately, the aim of this app will be to generate a zip file containing the code & resources needed for the cards "activity" the user generated in the app. Considering that the cards layout needs to be on the app side, and not on the library side, this could be useful.