文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>android SharedPreferences 记录数据

android SharedPreferences 记录数据

时间:2010-12-09  来源:fly_binbin

 

  <?xml version="1.0" encoding="utf-8" standalone="yes" ?> - <map>   <boolean name="isAutoRun" value="true" />   </map>

此文件可以直接使用Sharedpreferences  进行读取与解析,读取如下:

 

 

SharedPreferences preferces = getPreferences(Activity.MODE_PRIVATE);

isAutoRun = preferces.getBoolean("isAutoRun", true);tv1.setText(String.valueOf(isAutoRun));

 

写入如下:

SharedPreferences preferences = getPreferences(Activity.MODE_PRIVATE);

SharedPreferences.Editor editor = preferences.edit();

editor.putBoolean("isAutoRun", !isAutoRun);

editor.commit();

 

以上代码经过测试!

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载