Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 519 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 519 Bytes

StackCardsAndroid

Android Stack Cards swipe able

RelativeLayout cardsContainer = (RelativeLayout)findViewById(R.id.relative_container);

//Activity owningActivity, RelativeLayout container, int cardHeightDP, int cardDiffDP,float cardScale, int animationDuration)

StackCards stackCards = new StackCards(MainActivity.this, cardsContainer, 100, 50, (float) 0.2, 500);

//(Number of Cards, The Layout of the Card)

stackCards.initCards(7, R.layout.stack_card);