Android Open Source - touchgesturepattern touchjesture






From Project

Back to project page touchgesturepattern.

License

The source code is released under:

Apache License

If you think the Android project touchgesturepattern 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 act1000.touchjesture;
/*w w  w  .j a v a  2  s  . com*/
import android.app.Activity;
import android.os.Bundle;
import android.widget.Toast;

public class touchjesture extends Activity {
  drawview dv;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    
       dv = new drawview(this);
       setContentView(dv);
    }
}




Java Source Code List

act1000.touchjesture.drawview.java
act1000.touchjesture.touchjesture.java