首页 > 移动平台 > 详细

(android-002)关于shareprefences使用

时间:2015-01-07 23:40:34      阅读:476      评论:0      收藏:0      [点我收藏+]
package org.mo.common.util.sharepreferences;

import android.content.Context;
import android.content.SharedPreferences;

public class MySharePreferences {
	private Context mContext;
	private static MySharePreferences mySharePreferences;

	public MySharePreferences getInstance(Context mContext) {
		if (mySharePreferences == null) {
			mySharePreferences = new MySharePreferences(mContext);
		}
		return mySharePreferences;
	}

	private MySharePreferences(Context mContext) {
		super();
		this.mContext = mContext;
	}

	public SharedPreferences getPrivateSharedpreferences(String name) {
		SharedPreferences sharedpreferences = getSharedpreferences(name,
				Context.MODE_PRIVATE);
		return sharedpreferences;
	}

	public SharedPreferences getSharedpreferences(String name, int model) {
		SharedPreferences sharedPreferences = mContext.getSharedPreferences(
				name, model);
		return sharedPreferences;
	}
}


(android-002)关于shareprefences使用

原文:http://my.oschina.net/moziqi/blog/364867

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!