我需要全局变量在我的应用程序。变量将在BroadcastReceiver中设置并定期更改。我在服务的线程中获取和使用它。我的代码:
为全局变量创建Application Class:
package com.bklah.blah;
import android.app.Application;
public class ApplicationBlah extends Application
{
public boolean eSettings;
public boolean getSettings()
{
return this.eSettings;
}
public void setSettings( boolean eSettings)
{
this.eSettings = eSettings;
}
}
我在AndroidManifest文件中声明它:
<application android:icon="@drawable/icon"
android:label="@string/sAppName"
android:theme="@android:style/Theme.NoTitleBar"
android:name=".ApplicationBlah">
<receiver android:name=".BroadcastBlah"
android:process=":remote" />
我通过BroadcastReceiver周期性地循环改变变量:
public class BroadcastBlah extends BroadcastReceiver
{
@Override
public void onReceive( Context context, Intent intent)
{
((ApplicationBlah)context.getApplicationContext()).setSettings( true);
// or ...
// ((ApplicationBlah)getApplication()).setSettings(true);
}
}
我尝试在Thread in Service中使用循环变量:
public class ServiceBlah extends Service
{
public static Thread threadBlah = null;
public String fUse( Context context)
{
boolean eSeetingsCurrent1 =((ApplicationBlah)context.getApplicationContext()).eSettings;
boolean eSeetingsCurrent2 = ApplicationBlah.eSettings;
boolean eSeetingsCurrent3 = ((ApplicationBlah)context.getApplicationContext()).getSettings();
// --- all this variables always == false, but i need true from Receiver
}
public void fThreadBlah( final Context context)
{
final Handler handler = new Handler()
{
@Override
public void handleMessage( Message message) { ... }
};
threadBlah = new Thread()
{
@Override
public void run()
{
final Message message = handler.obtainMessage( 1, fUse( context));
handler.sendMessage( message);
}
};
threadBlah.setPriority( Thread.MAX_PRIORITY);
threadBlah.start();
}
}
但是在全局变量中我总是得到false。请告诉我哪里出错了?
我找到解决方案:我从清单中的接收器属性中删除android:process=":remote"
。它工作得很好!
你使用一个context来获取上下文,然后将其强制转换为Application,它看起来很奇怪。试试这个,我不知道它是否有效。
((ApplicationBlah)getApplication()).setSettings(true);
如果它只是你所追求的原始数据类型,我认为你可以使用SharedPreferences,它真的很容易使用。关于你的活动:
public static final String PREFS_NAME = "MyPrefs";
@Override
protected void onCreate(Bundle state){
super.onCreate(state);
. . .
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("eSeetingsCurrent1", eSeetingsCurrent1);
你可以在应用程序的任何地方使用:
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean eSeetingsCurrent1 = settings.getBoolean("eSeetingsCurrent1", false);
更多信息@ http://developer.android.com/guide/topics/data/data-storage.html#pref