Java tutorial
//package com.java2s; import android.content.Context; import java.util.TimeZone; public class Main { /** * Return the {@link TimeZone} the app is set to use (either user or conference). * * @param context Context to be used to lookup the {@link android.content.SharedPreferences}. */ public static TimeZone getDisplayTimeZone(Context context) { return TimeZone.getDefault(); } }