I am new to android , I have an arraylist but I want to show its value in a ListView ,but I am unable to do that.I have searched many methods like ArrayAdapter and BaseAdapters etc.but not helpful.Can anyone help me here is my code...
prayerTimes = prayers.getPrayerTimes(cal, latitude,longitude, timezone);
ArrayList prayerNames = prayers.getTimeNames();
for (int i = 0; i < prayerTimes.size(); i++)
{
txtPrayerTimes.append("\n" + prayerNames.get(i) + " - "
+ prayerTimes.get(i));
}