zoukankan      html  css  js  c++  java
  • SharePreferences使用

    获取数据:

    	@SuppressLint("InlinedApi")
    	private String getFromSharePreference(String key) {
    		if (TextUtils.isEmpty(key)) {
    			return null;
    		}
    		if (mShare == null) {
    			if (VERSION.SDK_INT >= 11) {
    				mShare = this.getSharedPreferences(
    						SHAREPREFERENCES_SCAN_COURSE,
    						Context.MODE_MULTI_PROCESS);
    			} else {
    				mShare = this.getSharedPreferences(
    						SHAREPREFERENCES_SCAN_COURSE, Context.MODE_PRIVATE);
    			}
    		}
    		return mShare.getString(key, null);
    	}
    

      插入数据:

    	@SuppressLint("InlinedApi")
    	private String getFromSharePreference(String key) {
    		if (TextUtils.isEmpty(key)) {
    			return null;
    		}
    		if (mShare == null) {
    			if (VERSION.SDK_INT >= 11) {
    				mShare = this.getSharedPreferences(
    						SHAREPREFERENCES_SCAN_COURSE,
    						Context.MODE_MULTI_PROCESS);
    			} else {
    				mShare = this.getSharedPreferences(
    						SHAREPREFERENCES_SCAN_COURSE, Context.MODE_PRIVATE);
    			}
    		}
    		return mShare.getString(key, null);
    	}
    

      

  • 相关阅读:
    kvm介绍
    正式班D24
    正式班D23
    正式班D21
    正式班D20
    正式班D19
    正式班D18
    正式班D17
    正式班D16
    正式班D15
  • 原文地址:https://www.cnblogs.com/jasonkent27/p/4848774.html
Copyright © 2011-2022 走看看