I don\'t know how to transform timestamp to date. I have:
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setConten
String S = "1350574775";
You are sending your timestamp in seconds, instead of milliseconds.
Do this, instead:
String S = "1350574775000";
Or, in your getDate method, multiply by 1000L:
getDate
1000L
new Date(Long.parseLong(timeStampStr) * 1000L)