第5天SharedPreferences儲存
第5天SharedPreferences儲存
安卓的5大儲存
一.SharedPreferences(******)
1.sp介紹
-
儲存少量的資料,且這些資料的格式非常簡單。 儲存5種原始資料型別: boolean, float, int, long, String
-
比如應用程式的各種配置資訊(如是否開啟音效、是否使用震動效果、小遊戲的玩家積分等),記住密碼功能,音樂播放器播放模式。
-
存哪了: /data/data/應用程式包名/shared_prefs/Xxx.xml檔案,以Key-Value的格式儲存
-
技能要點: (1)如何儲存資料 (2)如何獲取資料
2.如何儲存資料
步驟1
:得到SharedPreferences物件 getSharedPreferences(“檔案的名稱”,“檔案的型別”);
(1).Context.MODE_PRIVATE:指定該SharedPreferences資料只能被應用程式讀寫
(2).Context.MODE_WORLD_READABLE:指定該SharedPreferences資料能被其他應用程式讀,但不能寫。
(3).Context,MODE_WORLD_WRITEABLE:指定該SharedPreferences資料能被其他應用程式寫,但不能讀。
步驟2
:得到 SharedPreferences.Editor編輯物件
SharedPreferences.Editor editor=sp.edit();
步驟3
:新增資料
editor.putBoolean(key,value)
editor.putString()
editor.putInt()
editor.putFloat()
editor.putLong()
步驟4
:提交資料 editor.commit()
Editor其他方法: editor.clear() 清除資料 editor.remove(key) 移除指定key對應的資料
//SP寫資料
private void write() {
//TODO 1:得到SharedPreferences物件
//引數一 xml檔案的名字 引數二 模式 MODE_PRIVATE 指定該SharedPreferences資料只能被本應用程式讀寫
SharedPreferences preferences = getSharedPreferences("songdingxing", MODE_PRIVATE);
//TODO 2:獲得編輯物件
SharedPreferences.Editor editor = preferences.edit();
//TODO 3:寫資料
editor.putString("username","送定型");
editor.putInt("age",18);
editor.putBoolean("isMan",false);
editor.putFloat("price",12.4f);
editor.putLong("id",5425054250l);
//TODO 4:提交資料
editor.commit();
}
3.如何讀取資料
步驟1:得到SharedPreferences物件 getSharedPreferences(“檔案的名稱”,“檔案的型別”);
步驟2:讀取資料 String msg = sp.getString(key,defValue);
//讀資料
private void read() {
//TODO 1:得到SharedPreferences物件
//引數一 xml檔案的名字 引數二 模式 MODE_PRIVATE 指定該SharedPreferences資料只能被本應用程式讀寫
SharedPreferences preferences = getSharedPreferences("songdingxing", MODE_PRIVATE);
//TODO 2:直接讀取
//引數一 鍵 引數二 找不到的時候給預設值
String username=preferences.getString("username","");
int age=preferences.getInt("age",0);
boolean isMan=preferences.getBoolean("isMan",false);
float price=preferences.getFloat("price",0.0f);
long id=preferences.getLong("id",0l);
Toast.makeText(this, username+":"+age+":"+isMan+":"+price+":"+id, Toast.LENGTH_SHORT).show();
}
4.記住密碼功能
(1)xml佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".LoginActivity"
android:orientation="vertical"
android:gravity="center">
<EditText
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:layout_alignParentLeft="true"
android:id="@+id/cb_remember"
android:text="記住密碼"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_alignParentRight="true"
android:id="@+id/login"
android:text="登入"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</LinearLayout>
(2)Java程式碼
public class LoginActivity extends AppCompatActivity {
private SharedPreferences sharedPreferences;
private EditText username;
private EditText password;
private CheckBox cb;
private Button login;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
username = (EditText) findViewById(R.id.username);
password = (EditText) findViewById(R.id.password);
cb=(CheckBox)findViewById(R.id.cb_remember);
login=(Button)findViewById(R.id.login);
//TODO 讀取
sharedPreferences=getSharedPreferences("1609A",MODE_PRIVATE);
boolean ischeck= sharedPreferences.getBoolean("ischeck",false);
if(ischeck){
//讀到使用者名稱和密碼展現在頁面中,複選框被勾選
String username1=sharedPreferences.getString("username","");
String password1=sharedPreferences.getString("password","");
username.setText(username1);
password.setText(password1);
cb.setChecked(true);
}
//TODO 寫資料
login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username2=username.getText().toString().trim();
String password2=password.getText().toString().trim();
//使用者名稱和密碼是否正確
if("songdingxing".equals(username2)&&"123456".equals(password2)){
//判斷記住密碼是否被選中
if(cb.isChecked()){//存
SharedPreferences.Editor edit = sharedPreferences.edit();
edit.putBoolean("ischeck",true);
edit.putString("username",username2);
edit.putString("password",password2);
edit.commit();
}else{//清空
SharedPreferences.Editor edit = sharedPreferences.edit();
edit.putBoolean("ischeck",false);
edit.commit();
}
}
}
});
}
}