我创建了一个这样的自定义应用程序类:
class A extends android.app.Application{
public String abc = "xyz";
}
我有一个简单的java类
class B {
private appContext;
// This constructor is called from activity.
B(Context ctx){
this.appContext = ctx;
}
private void foo(){
// want to access Class A's abc String vairable Here...HOW TO DO THAT?????
}
}
如何在 foo 方法中访问 A 类的 abc 字符串变量。