I have tried and tried, but I cannot get my RSS app to properly format the pubDate into a more user friendly format.
String str = "26/08/1994";
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); //please notice the capital M
Date date = formatter.parse(str);
That code looks simple enough, but I get an unhandled type parse exception error on formatter.parse(str). Once that gets working, I then need to convert my RSS Pubdate to MM/dd.
The line of code to set the text for that is here:
listPubdate.setText(myRssFeed.getList().get(position).getPubdate());
Do I just change that to:
listPubdate.setText(date);
This looks so simple that it's driving me nuts that I can't find the answer.