如何使用相同活动中的不同按钮发送值?

时间:2014-12-03 05:23:03

标签: android json android-button

我在我的应用程序中使用json解析,首先是http://shdg.com/webservice/interestreceiveddetail?version=apps&received_detail_id=2783&user_login_id=2650 在这里,我有很多字段,当用户点击按钮时我需要使用两个字段 第一个是user_status,另一个是interest_id。 要发送此请求,请使用此网址 HTTP:/fjshdjhs.com/webservice/interestreceivedprocess版本=应用和安培; user_status = N&安培; interest_id = 1288

现在我需要用user_status发送N,所以如何做到这一点.. enter image description here

1 个答案:

答案 0 :(得分:0)

请尝试以下代码:

        String endPoint="http://gujjumatch.com/webservice/interestreceivedprocess?";
        String url;
        try {
            JSONObject resultObject = new JSONObject(response);
            String user_status=resultObject.getString("user_status");
            int interest_id=resultObject.getInt("interest_id");
            if (user_status.equals("Decline")){
                user_status="N";
            }
            String params="version=apps"
                    +"&user_status="+user_status
                    +"&interest_id="+interest_id;
            url=endPoint+params;
            Log.v("URL",url);
        } catch (JSONException e) {
            e.printStackTrace();
        }