如何根据android中的时区选择转换时间?

时间:2016-11-16 08:35:59

标签: android datetime android-studio timezone android-timepicker

我的申请下载购物详情。
示例: 购物详情于伦敦时间下午5:30下载。
现在,更改任何其他时区,以便按所选时区转换下载时间 时区正在更改日期/时间下的设置。 如何以编程方式实现此 ? 所以如何根据时区选择转换下载时间

3 个答案:

答案 0 :(得分:2)

试试这个,

我假设您已在伦敦时间中午12:00下载了购物详情。假设您使用的是24小时格式,我正在使用HH。如果要将其转换为设备默认时区,请使用DateFormat&amp ;;设置时区。格式化现有时间。

TimeZone.getDefault(),它提供设备的默认时区。

 try {
       DateFormat utcFormat = new SimpleDateFormat("HH:mm");
       utcFormat.setTimeZone(TimeZone.getTimeZone("GMT"));

       Date date = utcFormat.parse("12:00");

       DateFormat deviceFormat = new SimpleDateFormat("HH:mm");
       deviceFormat.setTimeZone(TimeZone.getDefault()); //Device timezone

       String convertedTime = deviceFormat.format(date);

} catch(Exception e){

}

答案 1 :(得分:0)

不,没有用于更改时间或时区的API ..无法以编程方式更改手机的时区。

答案 2 :(得分:0)

基于@Raghavendra解决方案,这可以是一种可移植的方法,如下所示:

/**
 * converts GMT date and/or time with a certain pattern into Local Device TimeZone
 * Example of dateTimePattern:
 *      "HH:mm",
 *      "yyyy-MM-dd HH:mm:ss",
 *      "yyyy-MM-dd HH:mm"
 * Ex of dateTimeGMT:
 *      "12:00",
 *      "15:23",
 *      "2019-02-22 09:00:21"
 * This assumes 24hr format
 */
@SuppressLint("SimpleDateFormat")
private String getDeviceDateTimeFromGMT(String dateTimePattern, String dateTimeGMT) {
    try {
        DateFormat utcFormat = new SimpleDateFormat(dateTimePattern);
        utcFormat.setTimeZone(TimeZone.getTimeZone("GMT")); // convert from GMT TimeZone

        Date date = utcFormat.parse(dateTimeGMT);

        DateFormat deviceFormat = new SimpleDateFormat(dateTimePattern);
        deviceFormat.setTimeZone(TimeZone.getDefault()); // Device TimeZone

        return deviceFormat.format(date);

    } catch (Exception e) {
        e.printStackTrace();
    }
    return null;
}

用法:

getDeviceDateTimeFromGMT("yyyy-MM-dd HH:mm", "2019-02-22 16:07"); 
getDeviceDateTimeFromGMT("yyyy-MM-dd HH:mm:ss", "2019-02-22 16:07:13"); 
getDeviceDateTimeFromGMT("H:mm", "16:07");