I have this json String right now:
private static final String JSON_REQUEST = "{ \"username\" : \"myusername\" ,\"password\" : \"mypassword\" , \"name\" : \"myname\"}";
Instead of myusername, mypassword, myname I want to add variables like this
String username = user.getText.toString;
String password = password.getText.toString;
String name= name.getText.toString;