Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

ktrnka/cardsui-for-android

 
 

Repository files navigation

CardsUI

An open source library offering the popular Google Now & Google Play cards views

Google Play Cards

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));

Additionnal Features

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);

CardsUI Generator

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.

screenshot1 screenshot2 screenshot3 screenshot4 screenshot5 screenshot6

About

An open source library offering the popular Google Now & Google Play cards views

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.0%
  • Groovy 1.0%