├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── EmojiDrop.apk ├── classes.dex ├── dexedLibs │ └── android-support-v4-f5a83daaf654e457a49c3294e03f4e02.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ ├── dog.png │ │ └── ic_launcher.png └── resources.ap_ ├── 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 │ ├── dog.png │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ ├── fragment_main.xml │ ├── item_left.xml │ └── item_right.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── example └── emojidrop ├── EmojiView.java ├── MainActivity.java ├── Message.java └── Point.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/EmojiDrop.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/EmojiDrop.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-f5a83daaf654e457a49c3294e03f4e02.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/dexedLibs/android-support-v4-f5a83daaf654e457a49c3294e03f4e02.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/jarlist.cache -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/res/crunch/drawable-xxhdpi/dog.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/drawable-xxhdpi/dog.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /res/layout/item_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/layout/item_left.xml -------------------------------------------------------------------------------- /res/layout/item_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/layout/item_right.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/example/emojidrop/EmojiView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/src/com/example/emojidrop/EmojiView.java -------------------------------------------------------------------------------- /src/com/example/emojidrop/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/src/com/example/emojidrop/MainActivity.java -------------------------------------------------------------------------------- /src/com/example/emojidrop/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/src/com/example/emojidrop/Message.java -------------------------------------------------------------------------------- /src/com/example/emojidrop/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyjAndroid/EmojiDrop/HEAD/src/com/example/emojidrop/Point.java --------------------------------------------------------------------------------