我是 Android 新手,所以问题的名称可能不正确。基本上,我得到一个 JSONObject 响应的价格(这发生在片段中)。
public void onResponse(JSONObject response) {
try {
int price = response.getInt("price");
} catch (JSONException ex) {
}
}
现在,我怎样才能将价格的值传递给另一个活动,并在该特定活动的 TextView 中将其设置为 setText?