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; /* ww w. j a va 2s. c o m*/ import android.app.Activity; import android.os.Bundle; import com.taig.widget.StretchedImageView; public class Stretched extends Activity { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); StretchedImageView imageView = new StretchedImageView( this ); imageView.setImageDrawable( getResources().getDrawable( R.drawable.rick ) ); setContentView( imageView ); } }