Android Open Source - android_video_streamer login






From Project

Back to project page android_video_streamer.

License

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.

Java Source Code

package com.shashanksingh.video_streamer;
/*from  www .  j a  v  a2  s  .  co  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 login extends Activity {

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.login);
      Button buttonSubmit = (Button) findViewById(R.id.submit);
    buttonSubmit.setOnClickListener(new OnClickListener(){
      @Override
      public void onClick(View arg0) {
        Intent intent = new Intent(login.this,MainActivity.class);
        startActivity(intent);
      }
    });
  }
  

  
}




Java Source Code List

com.shashanksingh.video_streamer.MainActivity.java
com.shashanksingh.video_streamer.login.java
com.shashanksingh.video_streamer.play.java
com.shashanksingh.video_streamer.signup.java