将数据从Activity传输到Fragment from Internet

时间:2017-09-10 13:25:41

标签: java android android-fragments asynchronous android-fragmentactivity

我有一个包含3个Fragment的类,需要从同一个URL收集所有数据。 我运行一个嵌套的异步类(在Activity中)从URL获取数据,然后我将这些数据存储在每个片段的包中。

 Bundle bundle = new Bundle();
        bundle.putString("edttext", json.toString());
        InfoFragment fragobj = new InfoFragment();
        fragobj.setArguments(bundle);

在我在Fragment中调用异步类之前,一切正常,但现在添加了两个片段以减少URL请求的数量,从Activity类调用Async类并将数据分发到我的3片段类。 / p>

  

问题:在异步设置捆绑包之前调用片段   在片段中显示空包。

1 个答案:

答案 0 :(得分:2)

在AsyncTask的onPostExeceute()中获得响应后,您可以从父活动广播Intent

@Override
protected void onPostExecute(Object o) {
    super.onPostExecute(o);
    Intent intent = new Intent("key_to_identify_the_broadcast");
    Bundle bundle = new Bundle();
    bundle.putString("edttext", json.toString());
    intent.putExtra("bundle_key_for_intent", bundle);
    context.sendBroadcast(intent);
}

然后您可以使用BroadcastReceiver类

接收片段中的包
private final BroadcastReceiver mHandleMessageReceiver = new 
BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        Bundle bundle = 
            intent.getExtras().getBundle("bundle_key_for_intent");
            if(bundle!=null){
                String edttext = bundle.getString("edttext");
            }
            //you can call any of your methods for using this bundle for your use case
    }
};

在片段的onCreateView()中,您需要先注册广播接收器,否则不会触发此广播接收器

IntentFilter filter = new IntentFilter("key_to_identify_the_broadcast");
getActivity().getApplicationContext().
               registerReceiver(mHandleMessageReceiver, filter);

最后,您可以取消注册接收器以避免任何异常

@Override
public void onDestroy() {
    try {

         getActivity().getApplicationContext().
             unregisterReceiver(mHandleMessageReceiver);

    } catch (Exception e) {
        Log.e("UnRegister Error", "> " + e.getMessage());
    }
    super.onDestroy();
}

您可以在所有片段中创建单独的广播接收器,并使用相同的广播将数据广播到所有片段。您还可以对不同的片段使用不同的键,然后使用特定片段的特定键进行广播。