- 1、本文档共15页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
一、
二、实验日期:
三、实验目的:
1、了解SharedPreferences的存储数据的格式及位置,能够读写其他应用程序的SharedPreferences。
2、
3、
四、:Windows+Eclipse+jdk+sdk+adt
五、
1、读写其他应用程序SharedPreferences。
Week09_01_01Activity.java
package com.week09.lab01_01;
import com.week09.lab01.R;
import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.widget.TextView;
public class Week09_01_01Activity extends Activity {
SharedPreferences preferences;
TextView show;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
show=(TextView)findViewById(R.id.show);
preferences = getSharedPreferences(count, MODE_WORLD_READABLE);
//读取SharedPreferences里的count数据
int count = preferences.getInt(count , 0);
//显示程序以前使用的次数
show.setText(程序以前被使用了+count+次。);
Editor editor = preferences.edit();
//存入数据
editor.putInt(count , ++count);
//提交修改
mit();
}
}
Week09_01_02Activity.java
package com.week09.lab01_02;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.pm.PackageManager.NameNotFoundException;
import android.os.Bundle;
import android.widget.TextView;
public class Week09_01_02Activity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView show = (TextView) findViewById(R.id.show);
Context useCount = null;
try{
// 获取其他程序所对应的Context
useCount = createPackageContext(com.week09.lab01_01,
Context.CONTEXT_IGNORE_SECURITY);
System.out.println(useCount);
}
catch (NameNotFoundException e){
e.printStackTrace();
}
// 使用其他程序的Context获取对应的SharedPreferences
SharedPreferences prefs =useCount.getSharedPreferences(count,
Context.MODE_WORLD_READA
文档评论(0)