我已经在我的
Android应用程序中的活动中存储了一个全局变量,使用了一个android.app.Application的子类,如Soonil(
How to declare global variables in Android?)所述.
方法如下:
class MyApp extends Application { private String myState; public String getState(){ return myState; } public void setState(String s){ myState = s; } } class Blah extends Activity { @Override public void onCreate(Bundle b){ ... MyApp appState = ((MyApp)getApplicationContext()); String state = appState.getState(); ... } }
到目前为止,这种方法适用于从我的任何活动中访问全局变量.但是今天使用相同的方法,我得到以下错误:
Cannot make a static reference to the non-static method getApplicationContext() from the type ContextWrapper
与之前的关键区别在于新的Activity实际上是一个片段(SherlockFragmentActivity,确切地说).
任何想法为什么我不能像以前那样访问appState,并且有一个很好的解决方法吗?
非常感谢.
编辑:好抓,马特B.事实证明,我实际上调用的地方是getApplicationContext()在另一个类中.这是调用点:
public class MyActivity extends SherlockFragmentActivity { public static class AccountListFragment extends SherlockListFragment { MyApp appState = ((MyApp)getApplicationContext()); ... } ... }
此外,如下所述,当我将呼叫更改为时,错误消失了
MyApp appState = ((MyApp)getActivity().getApplicationContext());