您好,登錄后才能下訂單哦!
SharedPerference不同同于文件存儲,它是使用鍵值的方式來存儲數據,對于保存的每一條數據都會給一個鍵值,這樣在讀取數據時直接通過鍵值取出相應數據。amdroid提供了三個方法來獲取實例:
1.Context類中的getSharePreferences()方法
它接收兩個參數,第一個是文件名;第二個是操作模式,目前只有MODE_PRIVATE可選,這是默認的操作模式,表示只有當前的應用可以對文件進行操作。
2.Activity類中的getPreference()方法
它只接收一個操作模式參數,因為使用這個方法會自動將類名SharedPreference作為文件名。
3.PreferenceManager類中的getDefaultSharedPreference()方法
主要由三步來實現:
(1)調用SharedPreferences對象的edit()方法來獲取一個SharedPreferences.Editor對象。
(2)向SharedPreferences.Editor對象中添加數據,比如添加一個布爾型數據就使用putBoolean()方法,依次論推。
(3)調用apply()方法將添加的數據提交,從而完成數據操作。`
使用案例
MainActivity:
package com.example.sharedpreferences; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity implements View.OnClickListener{ private Button button; private Button restore_btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button)findViewById(R.id.save_data); button.setOnClickListener(this); restore_btn = (Button)findViewById(R.id.restore_data); restore_btn.setOnClickListener(this); } @Override public void onClick(View view) { switch (view.getId()){ case R.id.save_data: saveData(); Toast.makeText(MainActivity.this,"保存成功!",Toast.LENGTH_SHORT).show(); break; case R.id.restore_data: restorData(); Toast.makeText(MainActivity.this,"恢復成功",Toast.LENGTH_SHORT).show(); break; default: break; } } public void saveData(){ SharedPreferences.Editor editor = getSharedPreferences("data",MODE_PRIVATE).edit(); editor.putString("name","Tom"); editor.putInt("age",18); editor.putBoolean("married",false); editor.apply(); } public void restorData(){ SharedPreferences preferences = getSharedPreferences("data",MODE_PRIVATE); String name = preferences.getString("name",""); int age = preferences.getInt("age",0); boolean married = preferences.getBoolean("marred",false); Log.d("主活動: ","獲取到名字: "+name); Log.d("主活動: ","獲取到年齡: "+age); Log.d("主活動: ","獲取到婚配: "+married); } }
布局文件
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout 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="com.example.sharedpreferences.MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/save_data" android:text="保存數據"/> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/restore_data" android:text="恢復數據"/> </LinearLayout> </android.support.constraint.ConstraintLayout>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。