在下面的代码中嗨,当用户输入其电子邮件ID和密码,然后单击“登录”按钮时,这将显示带有消息身份验证的进度对话框,然后进入loginActivity.java(相同的活动本身)。
现在,再次打开相同的应用程序,则显示另一个活动。
但是,我的问题是登录是否成功。如果成功是失败,那就意味着为什么要进行下一个活动。
在下面的代码中描述了起始屏幕,假设用户已经完成登录,那么它将显示主屏幕,否则将再次显示登录页面。
如果emailId和密码作为参数传递,则也仅执行其他阻止消息,例如“服务器无响应”
按时登录检查代码:
private void handlerMethod() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
// User_SharedPreference sharedPreference = new User_SharedPreference();
// boolean isLoggedIn = sharedPreference.isLoggedIn(context);
SharedPreferences app_preferences = PreferenceManager
.getDefaultSharedPreferences(SplashActivity.this);
SharedPreferences.Editor editor = app_preferences.edit();
isFirstTime = app_preferences.getBoolean("isFirstTime", true);
if (isFirstTime) {
Intent mainIntent;
mainIntent = new Intent(SplashActivity.this, LoginActivity.class);
startActivity(mainIntent);
finish();
}else{
Intent mainIntent;
mainIntent = new Intent(SplashActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}
}
}, TIME_OUT);
}
当用户单击登录按钮时,正在调用方法
login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
getlogindetails();
}
});
}
在下面的界面中,我将该方法称为post并传递了两个字符串。 API1.java:
@FormUrlEncoded
@POST("/app_login")
Call<Login> authenticate(@Field("emailId") String emailId, @Field("password") String password);
该类描述了来自服务器的响应,我正在检查状态
Login.java:(POJO)
public class Login {
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@SerializedName("status")
private String status;
}
在下面的函数或方法中,将发送电子邮件ID和密码作为参数进行描述。如果服务器成功响应,则我将进入下一个活动。
getlogindetails功能:
private void getlogindetails() {
String url = "http://172.24.1.1:9000";
Retrofit retrofit = null;
Log.d("123", "retrofit");
if (retrofit == null) {
retrofit = new Retrofit.Builder().baseUrl(url).addConverterFactory(GsonConverterFactory.create()).build();
Log.d("123", "build();");
}
final ProgressDialog progressDialog = new ProgressDialog(LoginActivity.this);
progressDialog.setIndeterminate(true);
progressDialog.setMessage("Authenticating..." + 60000 / 1000 + " Second(s)");
progressDialog.setCanceledOnTouchOutside(false);
progressDialog.setCancelable(false);
progressDialog.setIndeterminate(true);
new CountDownTimer(60000, 1000) {
public void onTick(long millisUntilFinished) {
// You don't need anything here
progressDialog.setMessage("Authenticating...");
if (!progressDialog.isShowing()) progressDialog.show();
}
public void onFinish() {
if (progressDialog.isShowing())
progressDialog.dismiss();
}
}.start();
API1 service = retrofit.create(API1.class);
Call<Login> call = service.authenticate(emailId, password);
Log.i(TAG, "Sending---" + url + service + url + "\n" + "emailId:" + emailId + "\n" + "password:" + password);
call.enqueue(new Callback<Login>() {
@Override
public void onResponse(Call<Login> call, Response<Login> response) {
// String status=response.body().getStatus().toString();
if (response !=null && response.isSuccessful()) {
String status = response.body().getStatus();
if (response !=null && response.isSuccessful()) {
String status = response.body().getStatus();
if(status=="success") {
progressDialog.dismiss();
SharedPreferences app_preferences = PreferenceManager
.getDefaultSharedPreferences(LoginActivity.this);
SharedPreferences.Editor editor = app_preferences.edit();
editor.putBoolean("isFirstTime", false);
editor.commit();
Toast.makeText(LoginActivity.this, "Login successfully", Toast.LENGTH_SHORT).show();
Intent mainIntent;
mainIntent = new Intent(LoginActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}
else{
Toast.makeText(LoginActivity.this, "No Response from server", Toast.LENGTH_SHORT).show();
}
} else {
Toast.makeText(LoginActivity.this, "Invalid EmailId and password", Toast.LENGTH_SHORT).show();
}
}
@Override
public void onFailure(Call<Login> call, Throwable t) {
Log.e(TAG, "Unable to submit post to API.");
progressDialog.dismiss();
}
});
}
答案 0 :(得分:4)
好吧,第一次启动应用程序时,isFirstTime
为true,因此将执行以下程序段
if (isFirstTime)
{
//implement your first time logic
editor.putBoolean("isFirstTime", false);
editor.commit();
Intent mainIntent;
mainIntent = new Intent(SplashActivity.this, LoginActivity.class);
startActivity(mainIntent);
finish();
}
此块isFirstTime
变为假之后
现在,在您的getlogindetails
@Override
public void onResponse(Call<Login> call, Response<Login> response) {
// String status=response.body().getStatus().toString();
if (response !=null && response.isSuccessful()) {
String status = response.body().getStatus();
if(status=="success") {
progressDialog.dismiss();
Toast.makeText(LoginActivity.this, "Login successfully", Toast.LENGTH_SHORT).show();
Intent mainIntent;
mainIntent = new Intent(LoginActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}
这里您还没有处理status!="success"
的情况。
因此,这里什么也没有发生,您仍然保持在loginActivity中。现在,当您再次启动应用程序时,由于isFirstTime
为假,由于代码中的以下块,您将重定向到DeviceControlActivity
。
else{
Intent mainIntent;
mainIntent = new Intent(SplashActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}
因此,基本上您需要做的是处理status!="success"
时的情况,并且我建议您仅在获得status=="success"
时更改sharedPreference值
编辑:
为if(status=="success")
添加一个else块,并在Toast中显示一些错误消息。
然后将以下块放在if(status=="success")
内,将其从您现在编写的位置删除。
editor.putBoolean("isFirstTime", false);
editor.commit();
希望这会有所帮助!
答案 1 :(得分:2)
使用usign Log.e()检查状态值; 代码仅在状态值成功时有效,然后如果状态值不成功怎么办?
String status = response.body().getStatus();
if(status.equals("success"))
{
progressDialog.dismiss();
Toast.makeText(LoginActivity.this, "Login successfully", Toast.LENGTH_SHORT).show();
Intent mainIntent = new Intent(LoginActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}
为此做一些准备工作,并给予适当的按摩。
希望您能理解
答案 2 :(得分:0)
mainIntent = new Intent(LoginActivity.this, DeviceControlActivity.class);
表明,它移至DeviceControlActivity.class。上那堂课。
答案 3 :(得分:-1)
设置getApplicationContext()
而不是LoginActivity.this
并将finish()
放在mainIntent
之前。
if(status=="success") {
progressDialog.dismiss();
Toast.makeText(LoginActivity.this, "Login successfully", Toast.LENGTH_SHORT).show();
finish();
Intent mainIntent = new Intent(getApplicationContext(), DeviceControlActivity.class);
startActivity(mainIntent);
}
希望它对您有帮助。