我想要做的就是拥有一个可以从子标签访问的JSONObject,这样我就可以将信息放入其中。
public class Example extends TabActivity{
private JSONObject testtt = new JSONObject();
public void writeJSON(String key, String value) throws JSONException {
testtt.put(key, value);
}
public String getJSON(){
return testtt.toString();
}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.example);
//Creating the tabs and everything
//Is Here
}
}
我有next / prev按钮而不是来回导航标签 其中一个标签:
public void onClick(View v) {
//Pre-alertDialog.setmessage stuff here.
alertDialog.setMessage(Example.this.getJSON());
// Example.this gives this error: No enclosing instance of the type Example is accessible in scope
}
我尝试了很多其他的东西,并且已经到了寻求帮助的地步(对我来说非常罕见)。 它也可能很明显,我对android开发相对较新。
编辑: 通过类扩展Application {尝试全局变量时