Have you checked CardsUI-for-Android
CardsUI
An open source library offering the popular Google Now & Google Play
cards views, additionnal features, view recycling and an optional
Model-View-Controller structure.
Google Play Cards
This new type of card based on the new Google play design are highly customization.
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));
See Docs for More...
May it will be useful to you.