GameTheory Android Expert Mar 19, 2019 #2 Pdik said: I am trying to get in side the body a Variable with was inputted inside the EDITText Forms. It needs to be a string. Click to expand... In your "body" String you should be using your String variables which already have the values from your EditText/s converted to strings. I made the changes and cleaned it up for you: Java: String body = "Voornaam " + de_naam + " Achternaam " + de_achternaam + " Email :" + de_email + " Telefoon:" + de_Telefoon;
Pdik said: I am trying to get in side the body a Variable with was inputted inside the EDITText Forms. It needs to be a string. Click to expand... In your "body" String you should be using your String variables which already have the values from your EditText/s converted to strings. I made the changes and cleaned it up for you: Java: String body = "Voornaam " + de_naam + " Achternaam " + de_achternaam + " Email :" + de_email + " Telefoon:" + de_Telefoon;
D Deleted User Guest Mar 20, 2019 #4 Pdik said: thanks but that didn't fix my problem. Click to expand... I'm not actually clear what your problem is, what you're trying to do, or what 'does not work'. Please clarify what the issue is, and how the behaviour doesn't match up to what you're expecting.
Pdik said: thanks but that didn't fix my problem. Click to expand... I'm not actually clear what your problem is, what you're trying to do, or what 'does not work'. Please clarify what the issue is, and how the behaviour doesn't match up to what you're expecting.