Back to project page android_video_streamer.
The source code is released under:
GNU General Public License
If you think the Android project android_video_streamer 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.shashanksingh.video_streamer; /* w ww.j a va2s . c o m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class signup extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.signup); Button buttonSubmit = (Button) findViewById(R.id.submit); buttonSubmit.setOnClickListener(new OnClickListener(){ @Override public void onClick(View arg0) { Intent intent = new Intent(signup.this,MainActivity.class); startActivity(intent); } }); } }