91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在Android 中使用SharedPreferences實現保存登錄數據功能

發布時間:2021-05-31 17:21:11 來源:億速云 閱讀:134 作者:Leah 欄目:移動開發

這篇文章給大家介紹怎么在Android 中使用SharedPreferences實現保存登錄數據功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.activity_main.xml頁面存放所有的控件,我在每一行都使用了線性布局。

activity_main.xml頁面:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginLeft="20dp"
 android:layout_marginRight="20dp"
 tools:context=".SecondActivity" >
 
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="20dp"
  android:orientation="horizontal" >
 
  <TextView
   android:id="@+id/tvName"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="用戶名:" />
 
  <EditText
   android:id="@+id/etInputName"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="2" />
 </LinearLayout>
 
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="60dp"
  android:orientation="horizontal" >
 
  <TextView
   android:id="@+id/tvPass"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="密 碼:" />
 
  <EditText
   android:id="@+id/etInputPass"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="2" />
 </LinearLayout>
 
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="100dp"
  android:orientation="horizontal" >
 
  <CheckBox
   android:id="@+id/cbSave"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:checked="false"
   android:text="保存用戶名" />
 </LinearLayout>
 
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="130dp"
  android:orientation="horizontal" >
 
  <Button
   android:id="@+id/btLogin"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="登錄" />
 
  <Button
   android:id="@+id/btCancel"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="取消" />
 </LinearLayout>
 
</RelativeLayout>

2.MainActivity.java頁面處理登錄和保存數據。

MainActivity.java頁面:

package com.example.sharedpreferences;
 
import android.os.Bundle;
import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
 
public class MainActivity extends Activity implements OnClickListener{
 
 SharedPreferences pref;
 Editor editor;
 private EditText etInputName,etInputPass;
 private CheckBox ckSave;
 private Button btLogin,btCancel;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 /**
 * 獲取控件id
 */
 getId();
 /**
 * 保存數據
 */
 saveData();
 /**
 * 綁定點擊事件
 */
 bindClick();
 }
 
 
 
 /**
 * 獲取控件id
 */
 private void getId() {
 etInputName=(EditText) findViewById(R.id.etInputName);
 etInputPass=(EditText) findViewById(R.id.etInputPass);
 ckSave=(CheckBox) findViewById(R.id.cbSave);
 btLogin=(Button) findViewById(R.id.btLogin);
 btCancel=(Button) findViewById(R.id.btCancel);
 }
 /**
 * 保存數據
 */
 private void saveData() {
 
 //獲得SharedPreferences對象
 pref=getSharedPreferences("userInfo",MODE_PRIVATE);//將內容存放到名為userInfo的文檔內
 
 //獲得SharedPreferences.Editor對象
 editor=pref.edit();
 
 String name=pref.getString("userName","");//獲取用戶名
 if(name.equals("")){//如果name為空,代表未選擇保存用戶名
 ckSave.setChecked(false);//不勾選
 }else{
 ckSave.setChecked(true);
 etInputName.setText(name);//將讀取到的name值賦值到EditText中
 }
 }
 
 /**
 * 綁定點擊事件
 */
 private void bindClick() {
 btLogin.setOnClickListener(this);
 btCancel.setOnClickListener(this);
 }
 
 /**
 * 按鈕點擊事件
 */
 @Override
 public void onClick(View view) {
 switch (view.getId()) {
 case R.id.btLogin:
 String name=etInputName.getText().toString().trim();//獲取輸入的名字并去掉空格
 String pass=etInputPass.getText().toString().trim();//獲取輸入的密碼并去掉空格
 if("admin".equals(name)&&"123456".equals(pass)){
 if(ckSave.isChecked()){//如果選擇保存用戶名
  editor.putString("userName",name);
  editor.commit();//提交數據
 }else{//如果未選擇保存用戶名
  editor.remove("userName");//刪除用戶名
  editor.commit();//提交數據(每次更改都需要提交)
 }
 Toast.makeText(SecondActivity.this,"登錄成功",Toast.LENGTH_SHORT).show();
 }else{
 Toast.makeText(SecondActivity.this,"用戶名或密碼不正確",Toast.LENGTH_SHORT).show();
 }
 break;
 case R.id.btCancel:
 break;
 }
 }
}

3.保存的文件目錄可以查看的到,點擊右上角進入,找到data->data->當前目錄的包名->shared-prefs->新建的文件名

怎么在Android 中使用SharedPreferences實現保存登錄數據功能

4.另外,點擊右上角導出可以暫時保存到桌面,然后選擇打開方式可以查看里邊信息。

5.還有一點是,當程序在真機上運行時,file explore打不開data文件夾,根據網上的經驗,真機先root,然后在手機上裝上R.E 管理器(或類似軟件),將/data/data的權限修改為可讀可寫可執行,然后,就可以在eclipse中展開了。

怎么在Android 中使用SharedPreferences實現保存登錄數據功能

6.SharedPreferences多用于配置信息或者內容較少的數據的保存,當數據量復雜或者較大,還是需要使用數據庫。

關于怎么在Android 中使用SharedPreferences實現保存登錄數據功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

布尔津县| 施甸县| 邮箱| 三门峡市| 祁东县| 苍南县| 曲周县| 葵青区| 南召县| 巴林右旗| 灵石县| 阿勒泰市| 林甸县| 昌都县| 平泉县| 安远县| 那曲县| 乌鲁木齐市| 阿巴嘎旗| 英山县| 化州市| 黄龙县| 庆安县| 景德镇市| 大理市| 武隆县| 红原县| 茂名市| 泰州市| 杭锦旗| 区。| 万年县| 彰武县| 旬阳县| 清流县| 河东区| 桑植县| 喀喇沁旗| 普定县| 南和县| 于都县|