Activity向Fragment之间传递值

来源:互联网 发布:fc2live直播软件 编辑:程序博客网 时间:2024/05/05 08:48

1.在Activity向Fragment传递值



 

2.在Fragment中去接收从Activity传递过来的值

Bundle  bundle=getArguments();

   if(bundle !=null){

userid=Integer.parseInt(bundle.getString("userid"));

askid=bundle.getInt("askid");

disgnose_type=bundle.getInt("disgnose_type",0);

}


0 0
原创粉丝点击