Back to project page project2.
The source code is released under:
MIT License
If you think the Android project project2 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 team2.scdm; //from w w w . jav a 2 s. co m import android.content.Intent; import android.os.Bundle; import android.view.GestureDetector; import android.view.View; public class Intro5 extends GestureListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_intro5); super.setGestureDetector(new GestureDetector(this.getApplicationContext(), this)); super.setLeftRight(Intro4.class, Intro6.class); } public void backward(View view) { startActivity(new Intent(this, Intro4.class)); } public void forward(View view) { startActivity(new Intent(this, Intro6.class)); } }