本文共 1179 字,大约阅读时间需要 3 分钟。
通过使用Soonil( 如何在Android中声明全局variables? )中解释的android.app.Application的子类,我一直在我的Android应用程序中的活动中存储一个全局variables。
方法如下: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(); ... } }
到目前为止,这种方法适用于从我的任何活动中访问全局variables。 但是今天使用相同的方法,我得到以下错误:
Cannot make a static reference to the non-static method getApplicationContext() from the type ContextWrapper
与之前的关键区别在于新的Activity实际上是一个片段(SherlockFragmentActivity,确切地说)。
任何想法为什么我不能像以前一样访问appState,并且有一个很好的解决方法吗?
非常感谢。
编辑:好抓,马特B.事实certificate,我实际上调用的地方是getApplicationContext()在另一个类中。 这是调用点:
public class MyActivity extends SherlockFragmentActivity { public static class AccountListFragment extends SherlockListFragment { MyApp appState = ((MyApp)getApplicationContext()); ... } ... }
此外,如下所述,当我将呼叫更改为时,错误消失了
MyApp appState = ((MyApp)getActivity().getApplicationContext());
getActivity().getApplication()
应该工作得很好。
首先需要引用活动,然后引用应用程序
不同之处在于,您现在正在从Fragment调用此函数(即使您将其命名为“Activity”)而不是Activity
转载地址:http://mxdko.baihongyu.com/