102

我有 2 个片段:(1)Frag1 (2)Frag2。

片段1

bundl = new Bundle();
bundl.putStringArrayList("elist", eList);

Frag2 dv = new Frag2();
dv.setArguments(bundl);
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.the_fragg,dv);
ft.show(getFragmentManager().findFragmentById(R.id.the_fragg)); 
ft.addToBackStack(null);
ft.commit();

如何在 Frag2 中获取这些数据?

4

7 回答 7

193

只需调用getArguments()Frag2onCreateView()方法:

public class Frag2 extends Fragment {

     public View onCreateView(LayoutInflater inflater,
         ViewGroup containerObject,
         Bundle savedInstanceState){
         //here is your arguments
         Bundle bundle=getArguments(); 

        //here is your list array 
        String[] myStrings=bundle.getStringArray("elist");   
     }
}
于 2012-08-21T08:14:57.930 回答
43

例如:添加数据:-

   Bundle bundle = new Bundle();
   bundle.putString("latitude", latitude);
   bundle.putString("longitude", longitude);
   bundle.putString("board_id", board_id);
   MapFragment mapFragment = new MapFragment();
   mapFragment.setArguments(bundle);

例如:获取数据:-

String latitude =  getArguments().getString("latitude")
于 2015-12-10T10:14:30.980 回答
26

您有一个getArguments()属于Fragment类的称为方法。

于 2011-03-24T22:07:05.280 回答
8

在 Frag1 中:

Bundle b = new Bundle();

b.putStringArray("arrayname that use to retrive in frag2",StringArrayObject);

Frag2.setArguments(b);

在 Frag2 中:

Bundle b = getArguments();

String[] stringArray = b.getStringArray("arrayname that passed in frag1");

就是这么简单。

于 2017-03-27T06:06:52.610 回答
6

以正确的方式实例化片段!

getArguments() setArguments()在使用静态方法实例化 Fragment 时,方法似乎非常有用。
IEMyfragment.createInstance(String msg)

怎么做?

片段代码

public MyFragment extends Fragment {

    private String displayMsg;
    private TextView text;

    public static MyFragment createInstance(String displayMsg)
    {
        MyFragment fragment = new MyFragment();
        Bundle args = new Bundle();
        args.setString("KEY",displayMsg);
        fragment.setArguments(args);           //set
        return fragment;
    }

    @Override
    public void onCreate(Bundle bundle)
    {
        displayMsg = getArguments().getString("KEY"):    // get 
    }

    @Override
    public View onCreateView(LayoutInlater inflater, ViewGroup parent, Bundle bundle){
        View view = inflater.inflate(R.id.placeholder,parent,false);
        text = (TextView)view.findViewById(R.id.myTextView);
        text.setText(displayMsg)    // show msg
        returm view;
   }

}

假设您想在创建实例时传递一个字符串。这就是你将如何做到的。

MyFragment.createInstance("This String will be shown in textView");

阅读更多

1) 为什么 Myfragment.getInstance(String msg) 优于 new MyFragment(String msg)?
2) Fragments 上的示例代码

于 2019-01-03T18:14:06.723 回答
2

对于像我这样希望发送原始对象以外的对象的人,因为您无法在片段中创建参数化构造函数,只需在片段中添加一个 setter 访问器,这始终对我有用。

于 2016-07-07T15:13:19.677 回答
0

如果您正在使用导航组件和导航图,请创建一个像这样的包

val bundle = bundleOf(KEY to VALUE) // or whatever you would like to create the bundle

然后当导航到另一个片段时使用这个:

findNavController().navigate(
        R.id.action_navigate_from_frag1_to_frag2,
        bundle
    )

当你登陆目标片段时,你可以使用

Bundle b = getArguments()// in Java

或者

val b = arguments// in kotlin
于 2021-01-15T08:05:31.850 回答