android登录活动后重定向 [英] Redirect after android login activity

查看:31
本文介绍了android登录活动后重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从本教程创建了一个登录活动.但我不知道如何在登录过程成功后重定向到我的主要活动.

I have created a login activity from this tutorial. But I have no idea how to redirect to my main activity after the login process has succeeded.

这里是 login.java 代码:

Here is the login.java code:

import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

public class login extends Activity {

private EditText  username=null;
private EditText  password=null;
private TextView attempts;
private Button login;
int counter = 3;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_login);
    username = (EditText)findViewById(R.id.editText1);
    password = (EditText)findViewById(R.id.editText2);
    attempts = (TextView)findViewById(R.id.textView5);
    attempts.setText(Integer.toString(counter));
    login = (Button)findViewById(R.id.button1);
}

public void login(View view){
    if(username.getText().toString().equals("admin") &&
            password.getText().toString().equals("admin")){
        Toast.makeText(getApplicationContext(), "Redirecting...",
                Toast.LENGTH_SHORT).show();

    }
    else{
        Toast.makeText(getApplicationContext(), "Wrong Credentials",
                Toast.LENGTH_SHORT).show();
        attempts.setBackgroundColor(Color.RED);
        counter--;
        attempts.setText(Integer.toString(counter));
        if(counter==0){
            login.setEnabled(false);
        }

    }

}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.login, menu);
    return true;
  }

}

提前致谢:)

推荐答案

if(username.getText().toString().equals("admin") &&
        password.getText().toString().equals("admin")){
    Toast.makeText(getApplicationContext(), "Redirecting...",
            Toast.LENGTH_SHORT).show();
    Intent i = new Intent(login.this, your_new_activity_name.class);
    startActivity(i);

}

还要确保新活动已在 AndroidManifest 文件中注册.

Also ensure that the new activity is registered in the AndroidManifest file.

在下面的示例代码中,将 .MainMenu 更改为 your_new_activity_name.

In the sample code below, change .MainMenu with your_new_activity_name.

<activity
    android:name=".MainMenu"
    android:label="@string/app_name" >
</activity>

此网址将帮助您学习.

http://www.vogella.com/tutorials/AndroidIntent/article.html

希望能帮到你!

这篇关于android登录活动后重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆