Back to project page touchgesturepattern.
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.
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); } }