Can someone tell me what's wrong about this String
:
String name = bundle.getString("textViewName");
String smsBody = "Hello!" +name "have gone missing.";
In the second line I get an error. But this works:
String name = bundle.getString("textViewName");
String smsBody = "Hello!" + name;
I need more text after I print the name. Does someone know how?