├── .gitignore ├── .project ├── AndroidManifest.xml ├── assets └── RobotoSlab-Regular.ttf ├── libs ├── crashlytics.jar ├── gson-2.2.4.jar ├── okhttp-1.3.0-jar-with-dependencies.jar └── picasso-2.2.0.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_drawer.png │ └── ic_launcher.png ├── drawable-mdpi │ ├── diagonal_line.png │ ├── ic_drawer.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── bg.png │ ├── grid.png │ ├── ic_action_share.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ └── ic_quilt.png ├── drawable-xxhdpi │ ├── ic_launcher.png │ └── link.png ├── drawable-xxxhdpi │ └── ic_launcher.png ├── drawable │ ├── box.xml │ ├── buttons.xml │ ├── list_item_bg.xml │ ├── repeating_bg.xml │ └── white_box.xml ├── layout │ ├── activity_about.xml │ ├── activity_artbook.xml │ ├── drawer_list_item.xml │ ├── embedded_details.xml │ ├── photo_details_adaper.xml │ ├── pic_view.xml │ └── shot_details.xml ├── menu │ ├── artbook.xml │ ├── details.xml │ └── main_showing_details.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ ├── appvalues.xml │ └── dimens.xml ├── values-sw720dp-port │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── appvalues.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshots └── freeflow.png └── src └── com └── arpitonline └── freeflow └── artbook ├── AboutActivity.java ├── ArtbookActivity.java ├── ArtbookApplication.java ├── CardIncomingAnimation.java ├── DetailsActivity.java ├── DetailsCapableActivity.java ├── data └── DribbbleDataAdapter.java ├── layouts └── DribbbleQuiltLayout.java ├── models ├── DribbbleFeed.java ├── DribbbleFetch.java ├── Player.java └── Shot.java └── views └── ExtViewPager.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /assets/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/assets/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /libs/crashlytics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/libs/crashlytics.jar -------------------------------------------------------------------------------- /libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /libs/okhttp-1.3.0-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/libs/okhttp-1.3.0-jar-with-dependencies.jar -------------------------------------------------------------------------------- /libs/picasso-2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/libs/picasso-2.2.0.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/diagonal_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-mdpi/diagonal_line.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/bg.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/grid.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_quilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xhdpi/ic_quilt.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xxhdpi/link.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable/box.xml -------------------------------------------------------------------------------- /res/drawable/buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable/buttons.xml -------------------------------------------------------------------------------- /res/drawable/list_item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable/list_item_bg.xml -------------------------------------------------------------------------------- /res/drawable/repeating_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable/repeating_bg.xml -------------------------------------------------------------------------------- /res/drawable/white_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/drawable/white_box.xml -------------------------------------------------------------------------------- /res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/activity_about.xml -------------------------------------------------------------------------------- /res/layout/activity_artbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/activity_artbook.xml -------------------------------------------------------------------------------- /res/layout/drawer_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/drawer_list_item.xml -------------------------------------------------------------------------------- /res/layout/embedded_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/embedded_details.xml -------------------------------------------------------------------------------- /res/layout/photo_details_adaper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/photo_details_adaper.xml -------------------------------------------------------------------------------- /res/layout/pic_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/pic_view.xml -------------------------------------------------------------------------------- /res/layout/shot_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/layout/shot_details.xml -------------------------------------------------------------------------------- /res/menu/artbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/menu/artbook.xml -------------------------------------------------------------------------------- /res/menu/details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/menu/details.xml -------------------------------------------------------------------------------- /res/menu/main_showing_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/menu/main_showing_details.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/appvalues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-sw720dp-land/appvalues.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-port/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-sw720dp-port/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/appvalues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values/appvalues.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /screenshots/freeflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/screenshots/freeflow.png -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/AboutActivity.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/ArtbookActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/ArtbookActivity.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/ArtbookApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/ArtbookApplication.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/CardIncomingAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/CardIncomingAnimation.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/DetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/DetailsActivity.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/DetailsCapableActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/DetailsCapableActivity.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/data/DribbbleDataAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/data/DribbbleDataAdapter.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/layouts/DribbbleQuiltLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/layouts/DribbbleQuiltLayout.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/models/DribbbleFeed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/models/DribbbleFeed.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/models/DribbbleFetch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/models/DribbbleFetch.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/models/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/models/Player.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/models/Shot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/models/Shot.java -------------------------------------------------------------------------------- /src/com/arpitonline/freeflow/artbook/views/ExtViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpit/Artbook/HEAD/src/com/arpitonline/freeflow/artbook/views/ExtViewPager.java --------------------------------------------------------------------------------