私は非常に奇妙な問題を抱えています。ダイアログに表示するデータがあります。アプリを閉じて再度開くと、ArrayList は常に元のデータを追加します (最初の 5 エントリ -> 閉じて再度開く -> 10 エントリ -> 閉じて再度開く -> 15 エントリなど)。
これは、データを ArrayList に解析する方法です (これは、TabHost で 1 回だけ発生します)。
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();
}
助けてくれてありがとう!