gpt4 book ai didi

java - 如果状态成功,则还阻止在 android 中执行

转载 作者:行者123 更新时间:2023-12-01 16:44:45 26 4
gpt4 key购买 nike

您好,在下面的代码中,当用户输入电子邮件 ID 和密码,然后单击登录按钮时,显示带有消息身份验证的进度对话框,然后进入 loginActivity.java(相同的 Activity 本身)。

现在,再次打开同一个应用程序,然后它显示另一个 Activity 。

但是,我的问题是是否登录成功。如果成功是失败,则说明为什么要进行下一个 Activity 。

在下面的代码中描述了启动屏幕,假设用户登录已经完成,那么它将显示主屏幕,否则它将再次显示登录页面。

如果 emailId 和密码作为参数传递,则也仅执行其他 block 消息,例如“服务器没有响应”

准时登录检查代码:

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();

}
});
}

在下面的界面中,我将该方法作为帖子提及并传递两个字符串。API1.java:

@FormUrlEncoded
@POST("/app_login")
Call<Login> authenticate(@Field("emailId") String emailId, @Field("password") String password);

在类(class)中描述了来自服务器的响应后我正在检查状态

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 和密码作为参数。如果服务器响应成功,那么我将进入下一个 Activity 。

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();

}
});
}

最佳答案

好吧,当您第一次启动应用程序时,isFirstTime 为 true,因此执行以下 block

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();
}

此 block 之后 isFirstTime 变为 false

现在,在您的 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"的情况。

所以,这里没有任何反应,您仍处于登录 Activity 中。现在,当您再次启动应用程序时,由于 isFirstTime 为 false,您将由于代码中的以下 block 而被重定向到 DeviceControlActivity

                else{
Intent mainIntent;
mainIntent = new Intent(SplashActivity.this, DeviceControlActivity.class);
startActivity(mainIntent);
finish();
}

因此,基本上您需要做的是处理 status!="success" 时的情况,而且我建议您仅在获得 status= 时更改共享Preference 值=“成功”

Edit:

if(status=="success") 添加 else block ,并在 Toast 中显示一些错误消息。

并将以下 block 放入 if(status=="success") 中,将其从您现在编写的位置删除。

editor.putBoolean("isFirstTime", false);
editor.commit();

希望这有帮助!

关于java - 如果状态成功,则还阻止在 android 中执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54233608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com