Bukan Materi Pelajaran yang Sulit, tapi Memulai Untuk Belajar itu yang Sulit.

Code Android Login Form

10:45 PM Posted by develop code source 1 comment
Login using the android form, display the username and password through the activity eat itlayout to design a form with file extension *. xml, for Android code in the file extension * java


screen shoot project login form :




note*
username : develop
password : code
if(name.getText().toString().equals("develop")&& word.getText().toString().equals("code"))
{
new AlertDialog.Builder(this)
.setTitle("Confirm").setMessage("Welcome" + name.getText())
.setNeutralButton("close",new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
intt.putExtra("user",name.getText().toString());
intt.putExtra("pass",word.getText().toString());
startActivity(intt);
}






Download Code LoginAndroidProject.zip

1 comment:

  1. where should i put these codings in my project in the login.java??

    ReplyDelete