Android Open Source - MultiTouchImageView Stretched






From Project

Back to project page MultiTouchImageView.

License

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.

Java Source Code

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 );
  }
}




Java Source Code List

com.taig.widget.MultiTouchImageView.java
com.taig.widget.StretchedImageView.java
com.taig.widget.sample.Advanced.java
com.taig.widget.sample.Main.java
com.taig.widget.sample.Simple.java
com.taig.widget.sample.Stretched.java