0

我有一个非常奇怪的问题。我有一些数据显示在对话框中。如果我关闭应用程序并再次重新打开它,我的 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();
}

非常感谢您的帮助!

4

4 回答 4

2

我认为您已将pdfListTitle视为TabHost中的静态,这可能是问题

pdfListTitle 应该在您的活动调用时初始化

例如,您可以使用这样的onCreate()方法编写此代码

ArrayList<T> pdfListTitle;

protected void onCreate(Bundle savedInstanceState) {

  pdfListTitle = new ArrayList<T>; <----

}
于 2012-07-13T12:19:49.183 回答
1

我猜在方法 TabHost.pdfListTitle.toArray(..)中,您应该重置每次填充数据的列表..

于 2012-07-13T12:15:41.237 回答
0

简单而天真的解决方法是添加

pdfListTitle.clear()

在你用数据填充列表之前。

但这并不能解决每次显示对话框时都会调用该方法的问题,除非您需要它。

于 2012-07-13T12:19:07.317 回答
0

正如以前的用户所说,您应该手动清理列表(pdfListTitle.clear()),但更深入地了解问题很有用。

正如我所看到的,您将您pdfListTitle作为静态字段存储在您的类 TabHost 中(顺便说一下,使用 TabHost 之类的名称不是很好,因为 android API 中有 TabHost(http://developer.android.com/reference/ android/widget/TabHost.html )。静态字段在加载类时首先被初始化。并且没有任何保证这些类何时会被 Android 系统卸载,因为在 android 中没有“关闭”应用程序。它'阅读 Java 中的类加载器对你很有用(你可以很简单地用谷歌搜索它)。

于 2012-07-13T12:22:47.477 回答