├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── BallG.apk ├── classes.dex ├── classes │ └── com │ │ └── example │ │ └── ballg │ │ ├── ArrayListMsg.class │ │ ├── Ball.class │ │ ├── BallThread$1.class │ │ ├── BallThread.class │ │ ├── BallTimetask$1.class │ │ ├── BallTimetask.class │ │ ├── BuildConfig.class │ │ ├── MainActivity.class │ │ ├── MessageLab.class │ │ ├── Message_user.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 │ │ ├── RegestActivity$1.class │ │ ├── RegestActivity$2.class │ │ └── RegestActivity.class ├── dexedLibs │ ├── android-support-v4-57347ef46cb2912057775c8b95c0727a.jar │ ├── android-support-v4-85ee10de8e51c690e49c8204e3c7e5e8.jar │ └── android-support-v4-9a3470457b2cb6534dce4ae982bbbb93.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 ├── resources.ap_ ├── temperture02 -110302.apk └── temperture02.apk ├── gen └── com │ └── example │ └── ballg │ ├── 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 │ └── under1.jpg ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ └── activity_regest.xml ├── menu │ ├── main.xml │ └── regest.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 └── example └── ballg ├── ArrayListMsg.java ├── Ball.java ├── BallThread.java ├── BallTimetask.java ├── MainActivity.java ├── MessageLab.java ├── Message_user.java └── RegestActivity.java /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/BallG.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/BallG.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/ArrayListMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/ArrayListMsg.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/Ball.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/Ball.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/BallThread$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/BallThread$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/BallThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/BallThread.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/BallTimetask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/BallTimetask$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/BallTimetask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/BallTimetask.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/MessageLab.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/MessageLab.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/Message_user.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/Message_user.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/R.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/RegestActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/RegestActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/RegestActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/RegestActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/example/ballg/RegestActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/classes/com/example/ballg/RegestActivity.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-57347ef46cb2912057775c8b95c0727a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/dexedLibs/android-support-v4-57347ef46cb2912057775c8b95c0727a.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-85ee10de8e51c690e49c8204e3c7e5e8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/dexedLibs/android-support-v4-85ee10de8e51c690e49c8204e3c7e5e8.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-9a3470457b2cb6534dce4ae982bbbb93.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/dexedLibs/android-support-v4-9a3470457b2cb6534dce4ae982bbbb93.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/jarlist.cache -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /bin/temperture02 -110302.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/temperture02 -110302.apk -------------------------------------------------------------------------------- /bin/temperture02.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/bin/temperture02.apk -------------------------------------------------------------------------------- /gen/com/example/ballg/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/gen/com/example/ballg/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/example/ballg/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/gen/com/example/ballg/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/under1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/drawable-xhdpi/under1.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/activity_regest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/layout/activity_regest.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/menu/regest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/menu/regest.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/example/ballg/ArrayListMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/ArrayListMsg.java -------------------------------------------------------------------------------- /src/com/example/ballg/Ball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/Ball.java -------------------------------------------------------------------------------- /src/com/example/ballg/BallThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/BallThread.java -------------------------------------------------------------------------------- /src/com/example/ballg/BallTimetask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/BallTimetask.java -------------------------------------------------------------------------------- /src/com/example/ballg/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/MainActivity.java -------------------------------------------------------------------------------- /src/com/example/ballg/MessageLab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/MessageLab.java -------------------------------------------------------------------------------- /src/com/example/ballg/Message_user.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/Message_user.java -------------------------------------------------------------------------------- /src/com/example/ballg/RegestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartWillGo/Temperture/HEAD/src/com/example/ballg/RegestActivity.java --------------------------------------------------------------------------------