In my app i want to send the ListView items to email body. For that i want that convert ArrayList values to String. Here is my code:
String[] namesArr = new String[array_list.size()];
String finalStr="";
for (int i = 0; i < array_list.size(); i++) {
namesArr[i] = array_list.get(i);
}
System.out.println("finalstr=" +namesArr);
I just want to display my Listview items to my email body part. Please suggest me the way to do so. I want to convert all the values to single string so that i can send it as a List to email. Thank You.