Thanks to Giulio Piancastelli I now have a list view with multiple line capabilities. Now I am having an issue formatting the date on the second line. All the dates are the same. In the feed they are different. I need someone to help me format my dates in the format of Day, Month, Year (Thursday, October 27, 2011).
This is the code that doesn't work:
List<Map<String, String>> data = new ArrayList<Map<String, String>>();
for (RSSItem item : feed.getAllItems()) {
Map<String, String> datum = new HashMap<String, String>(2);
datum.put("title", item.getTitle());
String dateStr = item.getPubDate();
SimpleDateFormat curFormater = new SimpleDateFormat("EEEE, MMMM dd, yyyy");
Date dateObj = new Date();
try {
dateObj = curFormater.parse(dateStr);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
SimpleDateFormat postFormater = new SimpleDateFormat("EEEE, MMMM dd, yyyy");
String newDateStr = postFormater.format(dateObj);
datum.put("date", newDateStr);
data.add(datum);
}
SimpleAdapter adapter = new SimpleAdapter(this, data,
android.R.layout.simple_list_item_2,
new String[] {"title", "date"},
new int[] {android.R.id.text1,
android.R.id.text2});
itemlist.setAdapter(adapter);
itemlist.setOnItemClickListener(this);
itemlist.setSelection(0);

If I remove my previous date code it works fine, but is formatted incorrectly.
This code does work, but is formatted incorrectly:
List<Map<String, String>> data = new ArrayList<Map<String, String>>();
for (RSSItem item : feed.getAllItems()) {
Map<String, String> datum = new HashMap<String, String>(2);
datum.put("title", item.getTitle());
datum.put("date", item.getPubDate().toString());
data.add(datum);
}
SimpleAdapter adapter = new SimpleAdapter(this, data,
android.R.layout.simple_list_item_2,
new String[] {"title", "date"},
new int[] {android.R.id.text1,
android.R.id.text2});
itemlist.setAdapter(adapter);
itemlist.setOnItemClickListener(this);
itemlist.setSelection(0);

I need someone to help me format my dates in the format of Day, Month, Year (Thursday, October 27, 2011). Thank you!