Android开发之SharedPreferences
一、 SharedPreferences
1 使用SharedPreference进行数据的存贮
很多时候我们开发的软件需要向用户提供软件参数设置功能,例如我们常用的QQ,用户可以设置是否允许陌生人添加自己为好友。对于软件配置参数的保存,如果是window软件通常我们会采用ini文件进行保存,如果是j2se应用,我们会采用properties属性文件或者xml进行保存。如果是Android应用,我们最适合采用什么方式保存软件配置参数呢?Android平台给我们提供了一个SharedPreferences类,它是一个轻量级的存储类,特别适合用于保存软件配置参数。使用SharedPreferences保存数据,其背后是用xml文件存放数据,文件存放在/data/data/<packagename>/shared_prefs目录下:
SharedPreferencessharedPreferences= getSharedPreferences("itcast",Context.MODE_PRIVATE);
Editoreditor= sharedPreferences.edit();//获取编辑器
editor.putString("name","andy");
editor.putInt("age",4);
editor.commit();//提交修改
生成的andy.xml文件内容如下:
<?xmlversion=‘1.0‘ encoding=‘utf-8‘ standalone=‘yes‘ ?>
<map>
<stringname="name">andy</string>
<intname="age" value="4" />
</map>
因为SharedPreferences背后是使用xml文件保存数据,getSharedPreferences(name,mode)方法的第一个参数用于指定该文件的名称,名称不用带后缀,后缀会由Android自动加上。方法的第二个参数指定文件的操作模式,共有四种操作模式,这四种模式前面介绍使用文件方式保存数据时已经讲解过。如果希望SharedPreferences背后使用的xml文件能被其他应用读和写,可以指定Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE权限。
另外Activity还提供了另一个getPreferences(mode)方法操作SharedPreferences,这个方法默认使用当前类不带包名的类名作为文件的名称。
2 使用SharedPreferences数据的读取
访问SharedPreferences中的数据代码如下:
SharedPreferencessharedPreferences=
getSharedPreferences("andy",Context.MODE_PRIVATE); //设置的文件类型问本app访问
//getString()第二个参数为缺省值,如果preference中不存在该key,将返回缺省值
Stringname = sharedPreferences.getString("name","");
intage = sharedPreferences.getInt("age",1);
如果访问其他应用中的Preference,前提条件是:该preference创建时指定了Context.MODE_WORLD_READABLE或者Context.MODE_WORLD_WRITEABLE权限。如:有个<packagename>为cn.itcast.action的应用使用下面语句创建了preference。
getSharedPreferences("itcast",Context.MODE_WORLD_READABLE);
其他应用要访问上面应用的preference,首先需要创建上面应用的Context,然后通过Context 访问preference ,访问preference时会在应用所在包下的shared_prefs目录找到preference :
ContextotherAppsContext= createPackageContext("cn.andy.action",Context.CONTEXT_IGNORE_SECURITY);
SharedPreferencessharedPreferences= otherAppsContext.getSharedPreferences("andy",Context.MODE_WORLD_READABLE);
Stringname = sharedPreferences.getString("name","");
intage = sharedPreferences.getInt("age",0);
如果不通过创建Context访问其他应用的preference,也可以以读取xml文件方式直接访问其他应用preference对应的xml文件,如:
File xmlFile =new File(“/data/data/<package name>/shared_prefs/andy.xml”);//<packagename>应替换成应用的包名
3 详细代码如下:
1 在MainActivity中保存SharedPreferences
package com.andy.sharedpreference; import java.util.Map; import com.andy.sharedpreference.R; import com.andy.service.PreferenceService; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends ActionBarActivity { private EditText nameText; private EditText ageText; private PreferenceService preferenceService; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); nameText = (EditText) findViewById(R.id.name); ageText = (EditText) findViewById(R.id.age); preferenceService = new PreferenceService(this); Map<String, String> params = preferenceService.getSharedPerence(); nameText.setText(params.get("name")); ageText.setText(params.get("age")); } //对应android:onClick 处的方法 public void save(View view) { String name = nameText.getText().toString(); String age = ageText.getText().toString(); preferenceService.saveSharedPreference(name, Integer.valueOf(age)); //Toast 一定要调用show 才显示 Toast.makeText(getApplicationContext(), R.string.success, Toast.LENGTH_SHORT).show(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
2 PreferenceService实现读取和保存
package com.andy.service; import java.util.HashMap; import java.util.Map; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.util.Log; public class PreferenceService { private static final String TAG = "PreferenceService"; private Context context; public PreferenceService(Context context) { super(); this.context = context; } /** * 保存sharedPerence * * @param name * @param age */ public void saveSharedPreference(String name, Integer age) { Log.i(TAG, "设置sharedPreference"); // sharedPreference 保存文件是以xml类型 而且后缀系统自动添加 SharedPreferences sharedPreferences = context.getSharedPreferences( "andy", Context.MODE_PRIVATE); // 获取Editor 编辑 Editor editor = sharedPreferences.edit(); editor.putString("name", name); editor.putInt("age", age); editor.commit(); // 必须commit } public Map<String, String> getSharedPerence() { Log.i(TAG, "获取sharedPreference"); SharedPreferences sharedPreferences = context.getSharedPreferences( "andy", Context.MODE_PRIVATE); Map<String, String> params = new HashMap<String, String>(); params.put("name", sharedPreferences.getString("name", "")); params.put("age", String.valueOf(sharedPreferences.getInt("age", 0))); return params; } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。