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
where should i put these codings in my project in the login.java??
ReplyDelete