activity向fragment中传递参数
时间: 2023-04-10 12:04:48 浏览: 132
Fragment跳转时传递参数及结果回传的方法(推荐)
可以使用Bundle来传递参数,例如:
在Activity中:
```
Bundle bundle = new Bundle();
bundle.putString("key", "value");
Fragment fragment = new MyFragment();
fragment.setArguments(bundle);
```
在Fragment中:
```
Bundle bundle = getArguments();
String value = bundle.getString("key");
```
这样就可以在Activity和Fragment之间传递参数了。
阅读全文