├── .gitattributes ├── .gitignore ├── AndroidManifest.xml ├── gen ├── com │ └── technotalkative │ │ └── cardslibdemo │ │ ├── BuildConfig.java │ │ └── R.java └── it │ └── gmariotti │ └── cardslib │ └── library │ └── R.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── angry_1.png │ ├── angry_2.png │ ├── angry_3.png │ ├── angry_4.png │ ├── angry_5.png │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_list.xml │ ├── activity_main.xml │ └── row_card.xml ├── menu │ └── main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── technotalkative └── cardslibdemo ├── CardListActivity.java └── MainActivity.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /gen/com/technotalkative/cardslibdemo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/gen/com/technotalkative/cardslibdemo/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/technotalkative/cardslibdemo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/gen/com/technotalkative/cardslibdemo/R.java -------------------------------------------------------------------------------- /gen/it/gmariotti/cardslib/library/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/gen/it/gmariotti/cardslib/library/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/angry_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/angry_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/angry_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/angry_2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/angry_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/angry_3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/angry_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/angry_4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/angry_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/angry_5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/layout/activity_list.xml -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/row_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/layout/row_card.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/technotalkative/cardslibdemo/CardListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/src/com/technotalkative/cardslibdemo/CardListActivity.java -------------------------------------------------------------------------------- /src/com/technotalkative/cardslibdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PareshMayani/CardslibDemo/HEAD/src/com/technotalkative/cardslibdemo/MainActivity.java --------------------------------------------------------------------------------