码迷,mamicode.com
首页 > 移动开发 > 详细

Android之使用SharedPreferences保存用户偏好参数

时间:2014-07-06 17:01:57      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   java   color   

在Android应用中,我们常需要记录用户设置的一些偏好参数,,此时我们就需要用SharedPreferences和Editor将这些信息保存下来,在下次登录时读取。

SharedPreferences保存的数据主要类似于配置信息格式的数据,因此它保存数据的形式为key-value对,下面我们来看下实例代码。

首先是界面布局,比较简单,就是一个普通的登陆界面.

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingBottom="@dimen/activity_vertical_margin"
 6     android:paddingLeft="@dimen/activity_horizontal_margin"
 7     android:paddingRight="@dimen/activity_horizontal_margin"
 8     android:paddingTop="@dimen/activity_vertical_margin"
 9     tools:context=".MainActivity" >
10 <EditText 
11     android:layout_width="fill_parent"
12     android:layout_height="wrap_content"
13     android:id="@+id/account"
14     />
15 <EditText 
16     android:layout_width="fill_parent"
17     android:layout_height="wrap_content"
18     android:id="@+id/password"
19     android:layout_below="@id/account"
20     />
21 <Button 
22         android:layout_width="fill_parent"
23         android:layout_height="wrap_content"
24         android:layout_below="@id/password"
25         android:text="保存参数"
26         android:id="@+id/save"
27         android:onClick="save"
28  />
29 </RelativeLayout>

这是自定义的Preferences 类,用来实现数据的保存 ,可在Android的内置存储空间产生一文件。

 1 import android.R.integer;
 2 import android.content.Context;
 3 import android.content.SharedPreferences;
 4 import android.content.SharedPreferences.Editor;
 5 import android.widget.EditText;
 6 
 7 public class Preferences {
 8 
 9     private Context context;
10     public Preferences(Context context)
11     {
12         this.context=context;
13     }
14     
15     
16     public void save(String name, Integer valueOf) 
17     {
18         //保存文件名字为"shared",保存形式为Context.MODE_PRIVATE即该数据只能被本应用读取
19         SharedPreferences preferences=context.getSharedPreferences("shared",Context.MODE_PRIVATE);
20         
21         Editor editor=preferences.edit();
22         editor.putString("name", name);
23         editor.putInt("age", valueOf);
24         
25         editor.commit();//提交数据
26     }
27 
28 
29 }

 

下面是Mainactivity的代码。在activity的oncreate阶段我们加载本地的数据。

import java.util.HashMap;
import java.util.Map;

import android.R.integer;
import android.os.Bundle;
import android.app.Activity;
import android.content.SharedPreferences;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

    private EditText account,passworad;
    Preferences prefer;//自定义的类
    SharedPreferences preference; 
@Override
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); account=(EditText)findViewById(R.id.account); passworad=(EditText)findViewById(R.id.password); //获取本地的数据 preference=getSharedPreferences("shared", MODE_PRIVATE); Map<String, String> map=new HashMap<String, String>(); map.put("name",preference.getString("name","")); map.put("age", String.valueOf(preference.getInt("age", 0))); account.setText(map.get("name")); passworad.setText(map.get("age")); } //保存文件的方法 public void save(View v) { String name=account.getText().toString(); String age=passworad.getText().toString(); prefer=new Preferences(this); prefer.save(name,Integer.valueOf(age)); Toast.makeText(getApplicationContext(), "保存完成", 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; } }

我们看一下效果.

bubuko.com,布布扣

点击保存参数,出现保存完成则说明我们已经保存成功了,在下次登录的时候可以看到这些参数还在。因为记录文件是在内置空间中的,所以我们在SD卡中找不到该文件,

如果有root权限的手机可以下载个RE文件管理,我们可以再/data/data/的路径找到很多应用程序的内置文件夹,我们可以在这些文件夹中看到一个shared_prefs文件夹,

里面就有我们刚刚设置而产生的xml文件。

bubuko.com,布布扣bubuko.com,布布扣

 

Android之使用SharedPreferences保存用户偏好参数,布布扣,bubuko.com

Android之使用SharedPreferences保存用户偏好参数

标签:android   style   blog   http   java   color   

原文地址:http://www.cnblogs.com/zhrxidian/p/3820507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!