Back to project page MultiTouchImageView.
The source code is released under:
MIT License
If you think the Android project MultiTouchImageView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.taig.widget.sample; //from ww w .ja va2 s . c om import android.app.Activity; import android.os.Bundle; import com.taig.widget.MultiTouchImageView; public class Simple extends Activity { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); MultiTouchImageView imageView = new MultiTouchImageView( this ); imageView.setImageDrawable( getResources().getDrawable( R.drawable.rick ) ); setContentView( imageView ); } }