How do I get the difference between the current time GMT and the time on the HMT based on the locale? (Both time and result in seconds).
This code return 0.
long now = new Date().getTime()/1000;
long currTime = getCurrentTimeStamp();
long answer = (now - currTime);
return answer;