我通过意图将活动A中的数据发送到活动B. 然后,我通过以下方式提取意图的结果。
String IdString = questionData.getString("id");
TextView mstudentId = (TextView) findViewById(R.id.ID);
mstudentId.setText(IdString);
我现在想取IdString的值,它等于字符串" id"的值。并将其放在Url中。例如,
final static String URL_ANSWER = "http//:myFake/(IdString)/Url"
如何在Android Studio中执行此操作?
答案 0 :(得分:0)
像这样,
final static String URL_ANSWER = "http//:myFake/" + IdString + "/Url";
OR 更新
String IdString = questionData.getString("id");
TextView mstudentId = (TextView) findViewById(R.id.ID);
mstudentId.setText(IdString);
final static String URL_ANSWER = "http//:myFake/" + mstudentId.getText() + "/Url";