├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── .settings └── org.eclipse.core.resources.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── GossipView.apk ├── classes.dex ├── classes │ └── com │ │ └── jcodecraeer │ │ └── gossipview │ │ ├── BuildConfig.class │ │ ├── GossipItem.class │ │ ├── GossipView$OnPieceClickListener.class │ │ ├── GossipView$Point.class │ │ ├── GossipView.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity.class │ │ ├── MyUtils.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ └── R.class ├── dexedLibs │ ├── android-support-v4-73a3fc1f65269c1809f35cdf018ae48e.jar │ └── android-support-v4-9f5ef644f09f2f5c414b471f08396180.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── drawable │ │ ├── home_score_normal_bg.png │ │ ├── home_score_pressed_bg.png │ │ ├── home_view_bg.png │ │ ├── home_view_inner_bg.png │ │ └── home_view_inner_press_bg.png └── resources.ap_ ├── gen └── com │ └── jcodecraeer │ └── gossipview │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── home_score_bg_selector.xml │ ├── home_score_normal_bg.png │ ├── home_score_pressed_bg.png │ ├── home_view_bg.png │ ├── home_view_inner_bg.png │ └── home_view_inner_press_bg.png ├── layout │ └── activity_main.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshots └── device-2014-11-15-003038.png └── src └── com └── jcodecraeer └── gossipview ├── GossipItem.java ├── GossipView.java ├── MainActivity.java └── MyUtils.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/.classpath -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/GossipView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/GossipView.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/GossipItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/GossipItem.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/GossipView$OnPieceClickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/GossipView$OnPieceClickListener.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/GossipView$Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/GossipView$Point.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/GossipView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/GossipView.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/MyUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/MyUtils.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/jcodecraeer/gossipview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/classes/com/jcodecraeer/gossipview/R.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-73a3fc1f65269c1809f35cdf018ae48e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/dexedLibs/android-support-v4-73a3fc1f65269c1809f35cdf018ae48e.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-9f5ef644f09f2f5c414b471f08396180.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/dexedLibs/android-support-v4-9f5ef644f09f2f5c414b471f08396180.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/jarlist.cache -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/home_score_normal_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable/home_score_normal_bg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/home_score_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable/home_score_pressed_bg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/home_view_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable/home_view_bg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/home_view_inner_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable/home_view_inner_bg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/home_view_inner_press_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/res/crunch/drawable/home_view_inner_press_bg.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/com/jcodecraeer/gossipview/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/gen/com/jcodecraeer/gossipview/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/jcodecraeer/gossipview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/gen/com/jcodecraeer/gossipview/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/home_score_bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_score_bg_selector.xml -------------------------------------------------------------------------------- /res/drawable/home_score_normal_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_score_normal_bg.png -------------------------------------------------------------------------------- /res/drawable/home_score_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_score_pressed_bg.png -------------------------------------------------------------------------------- /res/drawable/home_view_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_view_bg.png -------------------------------------------------------------------------------- /res/drawable/home_view_inner_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_view_inner_bg.png -------------------------------------------------------------------------------- /res/drawable/home_view_inner_press_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/drawable/home_view_inner_press_bg.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /screenshots/device-2014-11-15-003038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/screenshots/device-2014-11-15-003038.png -------------------------------------------------------------------------------- /src/com/jcodecraeer/gossipview/GossipItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/src/com/jcodecraeer/gossipview/GossipItem.java -------------------------------------------------------------------------------- /src/com/jcodecraeer/gossipview/GossipView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/src/com/jcodecraeer/gossipview/GossipView.java -------------------------------------------------------------------------------- /src/com/jcodecraeer/gossipview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/src/com/jcodecraeer/gossipview/MainActivity.java -------------------------------------------------------------------------------- /src/com/jcodecraeer/gossipview/MyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/GossipView/HEAD/src/com/jcodecraeer/gossipview/MyUtils.java --------------------------------------------------------------------------------