本文介绍了如何在Android应用其他活动使用共享preferrence价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用我正在存储在共享preference的值,它被成功地存储。
以下是我的一块code的

in my app i am storing a value in Shared Preference and it gets stored successfully.Following is a piece of my code

SharedPreferences prefs = getSharedPreferences( "idValue", 0 );
Editor editor = prefs.edit();
editor.putString( "idValue", chap.getid() );
editor.commit();
Log.e("Shared Pref",""+chap.getid());

现在我想使用一些其他的活动,该值与条件是否为空或有一个值。

Now i want to use this value in some other activities with a condition whether it is null or has an value.

如何在另一个活动得到这个值.....

How to get this value in another activity.....

推荐答案

您可以简单地使用

SharedPreferences prefs = this.getSharedPreferences("idValue", MODE_WORLD_WRITEABLE);
String idvalue = prefs.getString("idValue", "");

在任何活动需要

这篇关于如何在Android应用其他活动使用共享preferrence价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 06:36