小编use*_*621的帖子

使用putExtra传递多个变量

我有一些变量,我想传递给我的下一个活动,但我无法想办法做到这一点.

我的变量是:

JSONObject jsonObj = jsonArray.getJSONObject(i);
String propId = jsonObj.getString("id");
Log.i("Value id", propId);
String propCity = jsonObj.getString("city");
Log.i("Value city", propCity);
String propPlace = jsonObj.getString("place");
Log.i("Value place", propPlace);
String propStation = jsonObj.getString("station");
Log.i("Value station", propStation);
Run Code Online (Sandbox Code Playgroud)

我用来获取它们的代码是:

Bundle extras = new Bundle();
extras.putString("id", propId);
extras.putString("city", propCity);
extras.putString("place", propPlace);
extras.putString("station", propStation);
Run Code Online (Sandbox Code Playgroud)

有人可以帮我这个吗?

variables android android-activity

3
推荐指数
1
解决办法
2万
查看次数

标签 统计

android ×1

android-activity ×1

variables ×1