作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我有一个数据库,我创建了一个数据库类,它有一个私有(private)静态类 DbHelper 扩展 SQLiteOpenHelper 来帮助我管理我的数据库。
此数据库可从四个不同的 Activity 访问。
现在我需要的是?我有一个像这样的 GlobalClass:
public class Question extends Application{
private String check;
public String getCheck() {
return check;
}
public void setCheck(String check) {
this.check = check;
}
}
在 FirstScreen Activity 中,我有一个值用于 String check
。如果我进入其他 Activity Class 没问题,没问题。
如果我进入 DBHelper
我不能。我试过这样:
final Question quiz = (Question) getApplicationContext();
final String check = quiz.getCheck();
它在 getApplicationContext()
中显示错误。如何在 DBHelper 类中获取该值
请让我知道语法有什么问题。
最佳答案
在 DBHelper 中,除非您不传递它,否则您不会拥有 ApplicationContext。
代替这个做一件事,在你的应用程序类中创建一个静态字符串并使用它。因为 Application 类是一个单一的实例,它一直保留在内存中直到最后,所以它不会使用太多内存。
public class Question extends Application{
public static String check = "";
}
取值
public class DBHelper {
public method() {
String check = Question.check;
}
}
关于android - 如何将全局变量从一个类获取到另一个类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21901905/
我是一名优秀的程序员,十分优秀!