我想问一些令我困惑的事情。
我的问题是如何通过对话框中的用户输入声明一个全局变量(String),然后将其保存到sqlite中。
谢谢你的帮助..
答案 0 :(得分:0)
You can declare a global variable in your class that extend application,like this
class MyAppApplication extends Application {
private String mGlobalVarValue;
public String getGlobalVarValue() {
return mGlobalVarValue;
}
public void setGlobalVarValue(String str) {
mGlobalVarValue = str;
}
}
从中获取价值
MyAppApplication mApp = ((MyAppApplication)getApplicationContext());
String globalVarValue = mApp.getGlobalVarValue();