├── .classpath ├── .project ├── AndroidManifest.xml ├── README.md ├── assets ├── blackberry │ └── apk2bar.prefs └── oauth_consumer.properties ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar ├── revmob-6.9.8.jar ├── signpost-commonshttp4-1.2.1.1.jar ├── signpost-core-1.2.1.1.jar ├── twitter4j-core-4.0.2.jar └── twitter4j-media-support-4.0.2.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ └── test_item_1.xml └── values │ ├── dimens.xml │ └── strings.xml └── src └── com └── amitsid └── dynamicaddimageview ├── ImageEntity.java ├── Items.java ├── MainActivity.java ├── MultiTouchController.java ├── MultiTouchEntity.java ├── MyAbsoluteLayout.java ├── PhotoSortrView.java └── Utils.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MultitouchWithDynamicAddandRemove 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Multitouch With Dynamic Add and Remove - Now you can dynamically add, remove, scale and rotate images, it's real multitouch on Android 5 | 6 |

Just see this youtube video

7 | 8 | http://youtu.be/Jux4QnHu3dY 9 | 10 |
I have used https://code.google.com/p/android-multitouch-controller/ code
11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /assets/blackberry/apk2bar.prefs: -------------------------------------------------------------------------------- 1 | #Sat Oct 18 15:09:52 IST 2014 2 | minimal.os.version= 3 | application.category= 4 | custom.manifest=false 5 | manifest.additions=false 6 | -------------------------------------------------------------------------------- /assets/oauth_consumer.properties: -------------------------------------------------------------------------------- 1 | #google 2 | www.google.com.consumer_key = socialauth.in 3 | www.google.com.consumer_secret = Mlt6oDI0iIoOiylfiqgnCkrS 4 | 5 | #yahoo 6 | api.login.yahoo.com.consumer_key = dj0yJmk9Nlpqd0pIMENnb1N4JmQ9WVdrOWJqbEhURXA0TTJVbWNHbzlNVEk0TXpNeE5EYzJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD0yOA-- 7 | api.login.yahoo.com.consumer_secret = c04675a9274fb556f9e817b1ad23f0c91c2c0500 8 | 9 | #twitter 10 | twitter.com.consumer_key = 5jwyYJia583EEczmdAmlOA 11 | twitter.com.consumer_secret = j0rQkJjTjwVdv7HFiE4zz2qKJKzqjksR2aviVU8fSc 12 | 13 | #facebook 14 | graph.facebook.com.consumer_key = 297841130364674 15 | graph.facebook.com.consumer_secret = dc9c59d0c72d4f2533580e80ba4c2a59 16 | 17 | #LinkedIn 18 | api.linkedin.com.consumer_key = bh82t52rdos6 19 | api.linkedin.com.consumer_secret = zQ1LLrGbhDZ36fH8 20 | 21 | #FourSquare 22 | foursquare.com.consumer_key = VJT0YKBEQAQOMPWZPTGF1V5WOHZQMWNNJEBBQBSDNU3COOMQ 23 | foursquare.com.consumer_secret = HCVBO1W5MNWIPAOJABI3LILMLTHTPR52RU3P0GJ3TYTYVBWU 24 | 25 | #MySpace 26 | api.myspace.com.consumer_key = 67cc035edf0f4387a2488a0fb0b490ab 27 | api.myspace.com.consumer_secret = 80b58c4873ac4d2e8edb6257d85c79e71692c39d5f0f4b3a90acc1dffaf58cda 28 | 29 | #Runkeeper 30 | runkeeper.com.consumer_key=b1320c16082d48e2a7a94f5bfa2ce58b 31 | runkeeper.com.consumer_secret=7cbf7688519d4e8cb5343a4c939ac1a6 32 | 33 | #Yammer 34 | www.yammer.com.consumer_key=wLR96V3qBPHPcYLkrLvgg 35 | www.yammer.com.consumer_secret=4hhUOP6tYiHNOUz6dMhWBVHgcsFq3MUZpI8IkA 36 | 37 | #Salesforce 38 | login.salesforce.com.consumer_key = 3MVG9Y6d_Btp4xp4yFMR0tPSndvoapjV0sIbnVSNLg_l1vkeDgLelQhr6iYwlTgCL98VSBjU_XvQZYGfSmW_D 39 | login.salesforce.com.consumer_secret = 4962202263932085201 40 | 41 | #Google Plus 42 | googleapis.com.consumer_key=505071246058-6i3hf3rhd1s0qst492e23g9sq5t9koiv.apps.googleusercontent.com 43 | googleapis.com.consumer_secret=xrNQTx9ELsxmyUBfh35ntpfR 44 | 45 | #Flickr 46 | www.flickr.com.consumer_key = c519f64dbddc50f3e25e8cc73744602b 47 | www.flickr.com.consumer_secret = bf1a181c42bef4ea 48 | 49 | #Instagram 50 | api.instagram.com.consumer_key = c28ba7d08da64462a0db848c366ea43e 51 | api.instagram.com.consumer_secret = c5063d4e5f1248a19d2fa3e8bf3d8d6e -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/revmob-6.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/revmob-6.9.8.jar -------------------------------------------------------------------------------- /libs/signpost-commonshttp4-1.2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/signpost-commonshttp4-1.2.1.1.jar -------------------------------------------------------------------------------- /libs/signpost-core-1.2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/signpost-core-1.2.1.1.jar -------------------------------------------------------------------------------- /libs/twitter4j-core-4.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/twitter4j-core-4.0.2.jar -------------------------------------------------------------------------------- /libs/twitter4j-media-support-4.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/libs/twitter4j-media-support-4.0.2.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=Google Inc.:Google APIs:18 15 | -------------------------------------------------------------------------------- /res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhpuraamitr/MultitouchWithDynamicAddandRemove/729db25c0cb3d0251f5f1269f97fca56dfb78c75/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 |