我有一个非常奇怪的问题。我有一些数据显示在对话框中。如果我关闭应用程序并再次重新打开它,我的 ArrayList 总是会再次添加原始数据(前 5 个条目 -> 关闭并重新打开 -> 10 个条目 -> 关闭并重新打开 -> 15 个条目等)。
这就是我将数据解析到 ArrayList 中的方式(这只在我的 TabHost 中发生一次):
JSONArray jPDFs = json.getJSONArray("pdfs");
for (int i = 0; i < jPDFs.length(); i++) {
JSONObject c3 = jPDFs.getJSONObject(i);
String pdf_title = c3.getString("title");
String pdf_url = c3.getString("url");
pdfListTitle.add(pdf_title);
pdfListTitle2.add(pdf_title);
pdfListURL.add(pdf_url);
}
这是我的代码,我在其中显示带有解析数据的对话框:
public void showDialog() {
items = null; // have tried with and without...
builder = null; // have tried with and without...
builder = new AlertDialog.Builder(this);
Log.e(TabHost.LOG_TAG, "pdfListTitle=" + TabHost.pdfListTitle.size()); // this always hops from 5 -> 10 -> 15 on every reopen (without killing the app with a taskkiller...)
items = TabHost.pdfListTitle.toArray(new CharSequence[TabHost.pdfListTitle.size()]);
builder.setTitle(R.string.choose_document);
builder.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
WebView wv = (WebView) findViewById(R.id.webviewpdf);
wv.setWebViewClient(new WebViewClient());
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setBuiltInZoomControls(true);
wv.loadUrl("http://docs.google.com/gview?embedded=true&url="
+ TabHost.pdfListURL.get(item));
}
});
AlertDialog alert = builder.create();
alert.show();
}
非常感谢您的帮助!