gpt4 book ai didi

android - 在Android中通过Restful API登录不起作用?

转载 作者:行者123 更新时间:2023-11-29 19:02:02 24 4
gpt4 key购买 nike

我是 android 新手,我开始通过 Restful API 登录,但遇到了问题。点击登录按钮后,它不会打开下一页,也不会获取登录的用户详细信息。

我正在使用显示登录用户的详细信息的另一个文件将文本框 ID 指定为 (textViewUsername),但它不起作用。

登录 Activity 代码

public class LoginActivity extends AppCompatActivity implements{
public static final String LOGIN_URL ="http://email.php?email=%27%27&pass=%27%27";

public static final String KEY_EMAIL="email";
public static final String KEY_PASSWORD="password";

private EditText editTextemail;
private EditText editTextPassword;
private Button buttonLogin;

private String email;
private String password;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);

editTextemail = (EditText) findViewById(R.id.editTextUsername);
editTextPassword = (EditText) findViewById(R.id.editTextPassword);

buttonLogin = (Button) findViewById(R.id.buttonLogin);
buttonLogin.setOnClickListener(this);
}

private void userLogin() {
email = editTextemail.getText().toString().trim();
password = editTextPassword.getText().toString().trim();

StringRequest stringRequest = new StringRequest(Request.Method.POST, LOGIN_URL,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
if(response.trim().equals("success")){
openProfile();
} else {
Toast.makeText(LoginActivity.this,response,Toast.LENGTH_LONG).show();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(LoginActivity.this,error.toString(),Toast.LENGTH_LONG ).show();
}
}){
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> map = new HashMap<String,String>();
map.put(KEY_EMAIL,email);
map.put(KEY_PASSWORD,password);
return map;
}
};

RequestQueue requestQueue = Volley.newRequestQueue(this);
requestQueue.add(stringRequest);
}

private void openProfile(){
Intent intent = new Intent(this, ActivityUserProfile.class);
intent.putExtra(KEY_EMAIL, email);
startActivity(intent);
}

@Override
public void onClick(View v) {
userLogin();
/* if(v == buttonLogin){
startActivity(new Intent(this,ActivityUserProfile.class));
}*/}}

xml Activity_login 代码

**xml Code for activity_login**
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context="LoginActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Email"
/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editTextUsername" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Password"
/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editTextPassword" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Login"
android:id="@+id/buttonLogin" />

最佳答案

是记录还是登录?假设您必须使用这种情况的日志记录:

@Override
public void onResponse(String response) {
// Log.e(TAG,response); or Log.v(TAG,response)
if (response.trim().equals("success")) {
openProfile();
} else {
Toast.makeText(LoginActivity.this, response, Toast.LENGTH_LONG).show();
}
}

您可以在 Android Monitor 中检查即将到来的响应,还可以检查 onErrorListner()。

关于android - 在Android中通过Restful API登录不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43799506/

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