How to make a new line after every text??
This's the code.
String body = txtName.getText().toString() + txtLatitude.getText().toString() + txtLongitude.getText().toString();
ii.putExtra(android.content.Intent.EXTRA_TEXT, body);
I tried to use only \n
but it's giving me error. Please help me.