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

(android-002)关于shareprefences使用

时间:2015-01-07 23:43:09      阅读:472      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!