I get the data time - "Creation date of the item, in Unix Time ."
Such an example - 1479664016
Code in adapter:
viewHolder.date.setText(String.valueOf(myList.get(i).getTime())); How can you properly convert to something like this: "MM dd, yyyy hh: mma"
I found a solution , but I find it difficult how and where to insert it correctly.