博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android static 函数调用吗,无法对非静态方法进行静态引用(Android getApplicationContext())...
阅读量:6469 次
发布时间:2019-06-23

本文共 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/

你可能感兴趣的文章
046 SparlSQL中的函数
查看>>
Zookeeper 的 Lua 绑定(二)
查看>>
-27979 LoadRunner 错误27979 找不到请求表单 Action.c(73): Error -27979: Requested form not found...
查看>>
[LeetCode] Minimum Depth of Binary Tree
查看>>
,net运行框架
查看>>
Java 中 Emoji 的正则表达式
查看>>
Mixin Network第一届开发者大赛作品介绍- dodice, diceos和Fox.one luckycoin
查看>>
安卓Glide(4.7.1)使用笔记 01 - 引入项目
查看>>
AndroidNote
查看>>
中金易云:为出版社找到下一本《解忧杂货店》
查看>>
Flex布局
查看>>
Material Design之 AppbarLayout 开发实践总结
查看>>
Android中的SurfaceView详解
查看>>
Flutter之MaterialApp使用详解
查看>>
DataBinding最全使用说明
查看>>
原生Js交互之DSBridge
查看>>
Matlab编程之——卷积神经网络CNN代码解析
查看>>
白洋淀周末游
查看>>
三篇文章了解 TiDB 技术内幕 —— 说计算
查看>>
在Mac下使用Python3
查看>>