首页 > 学院 > 开发设计 > 正文

Activity与Fragment的传参

2019-11-09 15:54:47
字体:
来源:转载
供稿:网友

1、第一种方式,也是最常用的方式,就是使用Bundle来传递参数

OneFragment fragment = new OneFragment (); Bundle bundle = new Bundle(); bundle.putString("sky",values);//这里的values就是我们要传的值 fragment.setArguments(bundle);

然后在Fragment中的onCreatView方法中,通过getArgments()方法,获取到bundle对象,然后通过getString的key值拿到我们传递过来的值。

2、第二种方式,是在宿主Activity中定义方法,将要传递的值传递到Fragment中,在Fragment中的onAttach方法中,获取到这个值。

//宿主activity中的getContent()方法public String getContent(){ return "who are you";}//Fragment中的onAttach方法 @Override public void onAttach(Activity activity) { super.onAttach(activity); content= ((MainActivity) activity).getContent(); } //通过强转成宿主activity,就可以获取到传递过来的数据

3、下面再说一下创建Fragment和传递数值

如果我们不需要传递数值,那就直接可以在宿主activity中,跟平常一样创建fragment,但是如果我们需要传递数据的话,可以使用newInstance(数据)方法来传递,这个方法是自己定义的,但是是定义在Fragment中的一个静态方法。

static OneFragment newInstance(String s){ OneFragment fragment = new OneFragment (); Bundle bundle = new Bundle(); bundle.putString("DATA",s); fragment.setArguments(bundle); return fragment ; }//同样,在onCreatView中直接获取这个值 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.layout_fragment,container,false); Bundle bundle = getArguments(); String content= bundle.getString("sky"); tv = (TextView) view.findViewById(R.id.tv_content); if(data != null){ tv.setText(content); } return view; }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表