当前位置:   article > 正文

Android存储---SharedPreferences的介绍与使用_android shareference使用

android shareference使用

Demo运行效果



SharedPreferences详解

SharedPreferences是Android平台上一个轻量级的存储类,用来保存应用的一些常用配置,比如Activity状态,Activity暂停时,将此activity的状态保存到SharedPereferences中;当Activity重载,系统回调方法onSaveInstanceState时,再从SharedPreferences中将值取出.
SharedPreferences提供了java常规的Long、Int、String等类型数据的保存接口. 
SharedPreferences类似过去Windows系统上的ini配置文件,但是它分为多种权限,可以全局共享访问。
提示最终是以xml方式来保存,整体效率来看不是特别的高,对于常规的轻量级而言比SQLite要好不少,如果真的存储量不大可以考虑自己定义文件格式。xml处理时Dalvik会通过自带底层的本地XML Parser解析,比如XMLpull方式,这样对于内存资源占用比较好.
SharedPreferences数据的四种操作模式
  • Context.MODE_PRIVATE
  • Context.MODE_APPEND
  • Context.MODE_WORLD_READABLE
  • Context.MODE_WORLD_WRITEABLE
Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容
Context.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件.
Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE用来控制其他应用是否有权限读写该文件.
MODE_WORLD_READABLE:表示当前文件可以被其他应用读取.
MODE_WORLD_WRITEABLE:表示当前文件可以被其他应用写入


SharedPreferences使用步骤

SharedPreferences的使用非常简单,使用SharedPreferences保存key-value对的步骤如下:

  (1)使用Activity类的getSharedPreferences方法获得SharedPreferences对象,其中存储key-value的文件的名称由getSharedPreferences方法的第一个参数指定.

  (2)使用SharedPreferences接口的edit获得SharedPreferences.Editor对象.

  (3)通过SharedPreferences.Editor接口的putXxx方法保存key-value对。其中Xxx表示不同的数据类型。例如:字符串类型的value需要用putString方法.

  (4)通过SharedPreferences.Editor接口的commit方法保存key-value对。commit方法相当于数据库事务中的提交(commit)操作.

 

具体代码的书写流程为:

 A、存放数据信息

1、打开Preferences,名称为config,如果存在则打开它,否则创建新的Preferences

SharedPreferencesconfig= getSharedPreferences(“config”, 0);

2、让config处于编辑状态

SharedPreferences.Editor editor =config.edit();

3、存放数据

editor.putString(“name”,”ATAAW”);
editor.putString(“URL”,”ATAAW.COM”);

4、完成提交

editor.commit();

B、读取数据信息

1、获取Preferences

SharedPreferencesconfig= getSharedPreferences(“config”, 0);

2、取出数据

String name =config.getString(“name”,”默认值”);
String url = config.getString(“URL”,”default”);

以上就是Android中SharedPreferences的使用方法

 

demo的实现


MainActivity布局文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. tools:context="com.duanlian.sharedpreferencesdemo.MainActivity">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="50dp">
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="match_parent"
  14. android:gravity="center"
  15. android:text="用户名"
  16. android:textSize="23sp" />
  17. <EditText
  18. android:id="@+id/username"
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1" />
  22. </LinearLayout>
  23. <LinearLayout
  24. android:layout_width="match_parent"
  25. android:layout_height="50dp">
  26. <TextView
  27. android:layout_width="wrap_content"
  28. android:layout_height="match_parent"
  29. android:gravity="center"
  30. android:text="密 码"
  31. android:textSize="23sp" />
  32. <EditText
  33. android:id="@+id/password"
  34. android:layout_width="0dp"
  35. android:layout_height="wrap_content"
  36. android:layout_weight="1" />
  37. </LinearLayout>
  38. <Button
  39. android:onClick="save"
  40. android:layout_width="match_parent"
  41. android:layout_height="50dp"
  42. android:text="保存信息"/>
  43. <Button
  44. android:onClick="change"
  45. android:layout_width="match_parent"
  46. android:layout_height="50dp"
  47. android:text="跳转"/>
  48. </LinearLayout>


ActivityA的布局文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. tools:context="com.duanlian.sharedpreferencesdemo.MainActivity">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="50dp">
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="match_parent"
  14. android:gravity="center"
  15. android:text="用户名"
  16. android:textSize="23sp" />
  17. <EditText
  18. android:id="@+id/username"
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1" />
  22. </LinearLayout>
  23. <LinearLayout
  24. android:layout_width="match_parent"
  25. android:layout_height="50dp">
  26. <TextView
  27. android:layout_width="wrap_content"
  28. android:layout_height="match_parent"
  29. android:gravity="center"
  30. android:text="密 码"
  31. android:textSize="23sp" />
  32. <EditText
  33. android:id="@+id/password"
  34. android:layout_width="0dp"
  35. android:layout_height="wrap_content"
  36. android:layout_weight="1" />
  37. </LinearLayout>
  38. <Button
  39. android:onClick="get"
  40. android:layout_width="match_parent"
  41. android:layout_height="50dp"
  42. android:text="得到信息"/>
  43. </LinearLayout>

MainActivity里存储的具体实现

都是按照上面写的步骤来实现的,最后一定要提交

  1. package com.duanlian.sharedpreferencesdemo;
  2. import android.content.Intent;
  3. import android.content.SharedPreferences;
  4. import android.support.v7.app.AppCompatActivity;
  5. import android.os.Bundle;
  6. import android.view.View;
  7. import android.widget.EditText;
  8. public class MainActivity extends AppCompatActivity {
  9. private EditText passWors;
  10. private EditText userName;
  11. private SharedPreferences preferences;
  12. private SharedPreferences.Editor editor;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_main);
  17. initView();
  18. }
  19. private void initView() {
  20. userName = (EditText) findViewById(R.id.username);
  21. passWors = (EditText) findViewById(R.id.password);
  22. //1,实例化SharedPreferences对象,参数1:保存的名字,参数2:保存的模式MODE_PRIVATE私有的
  23. preferences = getSharedPreferences("config", MODE_PRIVATE);
  24. //2,让SharedPreferences处于可编辑状态
  25. editor = preferences.edit();
  26. }
  27. /**
  28. * 保存按钮的监听
  29. * @param view
  30. */
  31. public void save(View view) {
  32. //拿到用户输入的数据
  33. String name = userName.getText().toString().trim();
  34. String pwd = passWors.getText().toString().trim();
  35. //3,储存数据,类似于map
  36. editor.putString("name", name);
  37. editor.putString("pwd", pwd);
  38. //4,提交
  39. editor.commit();
  40. }
  41. /**
  42. * 跳转的点击监听
  43. * @param view
  44. */
  45. public void change(View view) {
  46. Intent intent = new Intent(MainActivity.this, ActivityA.class);
  47. startActivity(intent);
  48. }
  49. }


取出数据的实现

  1. package com.duanlian.sharedpreferencesdemo;
  2. import android.content.SharedPreferences;
  3. import android.support.v7.app.AppCompatActivity;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.EditText;
  7. public class ActivityA extends AppCompatActivity {
  8. private EditText userName;
  9. private EditText passWord;
  10. private String name;
  11. private String pwd;
  12. @Override
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_a);
  16. //得到数据
  17. //1,得到SharedPreferences对象
  18. SharedPreferences preferences = getSharedPreferences("config", 0);
  19. //2,取出数据
  20. name = preferences.getString("name","");
  21. pwd = preferences.getString("pwd", "");
  22. userName = (EditText) findViewById(R.id.username);
  23. passWord = (EditText) findViewById(R.id.password);
  24. }
  25. /**
  26. * 得到数据按钮的监听
  27. * @param view
  28. */
  29. public void get(View view) {
  30. userName.setText(name);
  31. passWord.setText(pwd);
  32. }
  33. }

demo下载地址:http://download.csdn.net/detail/dl10210950/9621810

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码吟游诗人2/article/detail/60728?site
推荐阅读
相关标签
  

闽ICP备14008679号