3

当我的活动完成时,我正在尝试更新列表片段,AsyncTask但我不确定我是否做错了什么。目前,我有一个按钮启动AsyncTask

search = (Button)findViewById(R.id.search);
    search.setOnClickListener(
            new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    String productname = prodname.getText().toString().trim();
                    if (NetworkManager.isOnline(getApplicationContext())){
                        // Go to Other screen
                        AsyncFetcher results = new AsyncFetcher(currActivity);
                        String _url = "http://192.168.1.3:3000/search.json?
                                       utf8=%E2%9C%93&q="+productname;
                        // progressDialog = ProgressDialog.show(
                        //    ClassifiedsActivity.this, "", "Loading...");
                        results.execute(_url);
                    } else {
                        // Throw some warning saying no internet 
                        // connection was found
                    }
                }
            });

执行完成后,我将在我的活动中实例化片段:

ResultFragment resultfrag = new ResultFragment();
getSupportFragmentManager().beginTransaction()
                           .replace(R.id.content_frame, resultfrag).commit();

但是,它似乎并没有用列表片段替换我的内容。这是我的布局文件:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>
4

1 回答 1

12

首先替换片段与刷新片段完全不同。是的,它还会重新加载其中的每个视图和数据。但是你必须将它与你的新数据联系起来。所以我建议你在你的片段中创建一个刷新方法并将这个方法发送给你刷新的数据,然后通知你的适配器dataSetChanged

为此,您需要访问当前附加的片段并调用其刷新方法。你可以用findFragmentByTag它来达到它。

编辑:澄清一点

完成AsyncTask后,您应该执行以下onPostExecute方法:

ResultFragment resultFrag = (ResultFragment) getSupportFragmentManager()
                                 .findFragmentByTag("FragToRefresh");
if (resultFrag != null) {
    resultFrag.refreshData(refreshedArray);
}

在你的ResultFragment你需要有refreshData方法,这是这样的:

public void refreshData(ArrayList<YourObject> data) {
   yourArray = new ArrayList<YourObject>(data);
   yourAdapter.notifyDataSetChanged();
}

每当您的任务完成时,您的列表就会刷新。

于 2013-05-05T20:10:15.883 回答