溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么實現(xiàn)記住密碼功能

發(fā)布時間:2021-08-07 14:38:29 來源:億速云 閱讀:120 作者:Leah 欄目:編程語言

Android中怎么實現(xiàn)記住密碼功能,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

LoginActivity.java

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;import android.content.Intent;import android.content.SharedPreferences;import android.os.Bundle;import android.preference.PreferenceManager;import android.view.View;import android.widget.Button;import android.widget.CheckBox;import android.widget.EditText;import android.widget.Toast;import com.wangdeqiang.www.chatwithrobot.R;import static com.wangdeqiang.www.chatwithrobot.R.id.account;/** * @author */public class LoginActivity extends BaseActivity {  private SharedPreferences pref;  private SharedPreferences.Editor editor;  private EditText accountEdit;  private EditText passwordEdit;  private Button login;  private CheckBox rememberPass;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_login);    pref = PreferenceManager.getDefaultSharedPreferences(this);    accountEdit = (EditText) findViewById(account);    passwordEdit = (EditText) findViewById(R.id.password);    rememberPass = (CheckBox) findViewById(R.id.remember_pass);    login = (Button) findViewById(R.id.login);    boolean isRemeber = pref.getBoolean("remember_password",false);    if(isRemeber) {      //將賬號和密碼都設(shè)置到文本框中      String account = pref.getString("account","");      String password = pref.getString("password","");      accountEdit.setText(account);      passwordEdit.setText(password);      rememberPass.setChecked(true);    }    login.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View v) {        String account = pref.getString("account", "").toString();        String password = pref.getString("password", "").toString();        //如果賬號和密碼是admin和123456,就認為登陸成功        if (account.equals("admin") && password.equals("123456")) {          editor = pref.edit();          if (rememberPass.isChecked()) {            editor.putBoolean("remember", false);            editor.putString("account", account);            editor.putString("password", password);          } else {            editor.apply();          }          editor.commit();          Intent intent = new Intent(LoginActivity.this, Main3Activity.class);          startActivity(intent);          finish();        } else {          Toast.makeText(LoginActivity.this, "密碼或者賬號錯誤", Toast.LENGTH_SHORT).show();        }      }    });    }   }

activity_login.xml

<?xml version="1.0" encoding="utf-8"?><TableLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:stretchColumns="1"  >  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:orientation="vertical">    <LinearLayout      android:layout_width="match_parent"      android:layout_height="60dp"      android:orientation="horizontal">      <TextView        android:layout_width="90dp"        android:layout_height="wrap_content"        android:layout_gravity="center_vertical"        android:text="Account:"        android:textSize="18sp" />      <EditText        android:id="@+id/account"        android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_gravity="center_vertical"        android:layout_weight="1" />    </LinearLayout>    <LinearLayout      android:layout_width="match_parent"      android:layout_height="60dp"      android:orientation="horizontal">      <TextView        android:layout_width="90dp"        android:layout_height="wrap_content"        android:layout_gravity="center_vertical"        android:text="Password"        android:textSize="18sp" />      <EditText        android:id="@+id/password"        android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_gravity="center_vertical"        android:layout_weight="1"        android:inputType="textPassword" />    </LinearLayout>  </LinearLayout>  <TableRow>    <CheckBox      android:id="@+id/remember_pass"      android:layout_height="wrap_content"      />    <TextView      android:layout_height="wrap_content"      android:text="Remeber password"      />  </TableRow>  <Button    android:id="@+id/login"    android:layout_height="wrap_content"    android:layout_span="2"    android:text="Login"    /></TableLayout>

看完上述內(nèi)容,你們掌握Android中怎么實現(xiàn)記住密碼功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI