【发布时间】:2019-06-11 12:23:29
【问题描述】:
在下面的代码中,当用户输入他们的电子邮件 ID 和密码然后单击登录按钮时,我会显示带有消息身份验证的进度对话框,然后它进入 loginActivity.java(相同的活动本身)。
现在,再次打开同一个应用程序,然后它显示另一个活动。
但是,我的问题是登录是否成功。如果成功就是失败意味着为什么要转移到下一个活动。
在下面的代码中描述了从启动屏幕假设用户登录已经完成然后它将显示主屏幕,否则它将再次显示登录页面。
如果 emailId 和密码作为参数传递,那么也只执行 else 块消息,例如“服务器没有响应”
准时登录校验码:
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);
在课程中描述了来自我正在检查状态的服务器的后续响应
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();
}
});
}
【问题讨论】:
-
你能详细解释一下你想要什么吗?
-
如果登录成功想要移动到 DeviceControlActivity.class 。但是一旦关闭应用程序并再次打开它就不会继续显示 DeviceControlActivity.class
-
请也分享日志
-
没有日志............
-
没有日志是什么意思?
标签: java android retrofit retrofit2