rk3399_9.0.1_mid 时区转换

将这个类完全复制

public class ZoneGetter {
    private static final String TAG = "ZoneGetter";

public static final String KEY_ID = "id";  // value: String

/**
 * @deprecated Use {@link #KEY_DISPLAY_LABEL} instead.
 */
@Deprecated
public static final String KEY_DISPLAYNAME = "name";  // value: String

public static final String KEY_DISPLAY_LABEL = "display_label"; // value: CharSequence

/**
 * @deprecated Use {@link #KEY_OFFSET_LABEL} instead.
 */
@Deprecated
public static final String KEY_GMT = "gmt";  // value: String
public static final String KEY_OFFSET = "offset";  // value: int (Integer)
public static final String KEY_OFFSET_LABEL = "offset_label";  // value: CharSequence

private static final String XMLTAG_TIMEZONE = "timezone";
@RequiresApi(api = Build.VERSION_CODES.N)
    public static CharSequence getTimeZoneOffsetAndName(Context context, TimeZone tz, Date now) {
        Locale locale = context.getResources().getConfiguration().locale;
        TimeZoneFormat tzFormatter = TimeZoneFormat.getInstance(locale);
        CharSequence gmtText = getGmtOffsetText(tzFormatter, locale, tz, now);
        TimeZoneNames timeZoneNames = TimeZoneNames.getInstance(locale);
        String zoneNameString = getZoneLongName(timeZoneNames, tz, now);
        if (zoneNameString == null) {
            return gmtText;
        }

        // We don't use punctuation here to avoid having to worry about localizing that too!
        return TextUtils.concat(gmtText, " ", zoneNameString);
    }
  @RequiresApi(api = Build.VERSION_CODES.N)
public static List<Map<String, Object>> getZonesList(Context context) {
    final Locale locale = context.getResources().getConfiguration().locale;
    final Date now = new Date();
    final TimeZoneNames timeZoneNames = TimeZoneNames.getInstance(locale);
    final ZoneGetterData data = new ZoneGetterData(context);

    // Work out whether the display names we would show by default would be ambiguous.
    final boolean useExemplarLocationForLocalNames =
            shouldUseExemplarLocationForLocalNames(data, timeZoneNames);
    // Generate the list of zone entries to return.
    List<Map<String, Object>> zones = new ArrayList<Map<String, Object>>();
    for (int i = 0; i < data.zoneCount; i++) {
        TimeZone tz = data.timeZones[i];
        CharSequence gmtOffsetText = data.gmtOffsetTexts[i];

        CharSequence displayName = getTimeZoneDisplayName(data, timeZoneNames,
                useExemplarLocationForLocalNames, tz, data.olsonIdsToDisplay[i]);
        if (TextUtils.isEmpty(displayName)) {
            displayName = gmtOffsetText;
        }

        int offsetMillis = tz.getOffset(now.getTime());
        Map<String, Object> displayEntry =
                createDisplayEntry(tz, gmtOffsetText, displayName, offsetMillis);
        zones.add(displayEntry);
    }
    return zones;
}
private static Map<String, Object> createDisplayEntry(
        TimeZone tz, CharSequence gmtOffsetText, CharSequence displayName, int offsetMillis) {
    Map<String, Object> map = new HashMap<>();
    map.put(KEY_ID, tz.getID());
    map.put(KEY_DISPLAYNAME, displayName.toString());
    map.put(KEY_DISPLAY_LABEL, displayName);
    map.put(KEY_GMT, gmtOffsetText.toString());
    map.put(KEY_OFFSET_LABEL, gmtOffsetText);
    map.put(KEY_OFFSET, offsetMillis);
    return map;
}
public static List<String> readTimezonesToDisplay(Context context) {
    List<String> olsonIds = new ArrayList<String>();
    try (XmlResourceParser xrp = context.getResources().getXml(R.xml.timezones)) {
        while (xrp.next() != XmlResourceParser.START_TAG) {
            continue;
        }
        xrp.next();
        while (xrp.getEventType() != XmlResourceParser.END_TAG) {
            while (xrp.getEventType() != XmlResourceParser.START_TAG) {
                if (xrp.getEventType() == XmlResourceParser.END_DOCUMENT) {
                    return olsonIds;
                }
                xrp.next();
            }
            if (xrp.getName().equals(XMLTAG_TIMEZONE)) {
                String olsonId = xrp.getAttributeValue(0);
                olsonIds.add(olsonId);
            }
            while (xrp.getEventType() != XmlResourceParser.END_TAG) {
                xrp.next();
            }
            xrp.next();
        }
    } catch (XmlPullParserException xppe) {
        Log.e(TAG, "Ill-formatted timezones.xml file");
    } catch (java.io.IOException ioe) {
        Log.e(TAG, "Unable to read timezones.xml file");
    }
    return olsonIds;
}
@RequiresApi(api = Build.VERSION_CODES.N)
private static boolean shouldUseExemplarLocationForLocalNames(ZoneGetterData data,
                                                              TimeZoneNames timeZoneNames) {
    final Set<CharSequence> localZoneNames = new HashSet<>();
    final Date now = new Date();
    for (int i = 0; i < data.zoneCount; i++) {
        final String olsonId = data.olsonIdsToDisplay[i];
        if (data.localZoneIds.contains(olsonId)) {
            final TimeZone tz = data.timeZones[i];
            CharSequence displayName = getZoneLongName(timeZoneNames, tz, now);
            if (displayName == null) {
                displayName = data.gmtOffsetTexts[i];
            }
            final boolean nameIsUnique = localZoneNames.add(displayName);
            if (!nameIsUnique) {
                return true;
            }
        }
    }
    return false;
}
@RequiresApi(api = Build.VERSION_CODES.N)
private static CharSequence getTimeZoneDisplayName(ZoneGetterData data,
                                                   TimeZoneNames timeZoneNames, boolean useExemplarLocationForLocalNames, TimeZone tz,
                                                   String olsonId) {
    final Date now = new Date();
    final boolean isLocalZoneId = data.localZoneIds.contains(olsonId);
    final boolean preferLongName = isLocalZoneId && !useExemplarLocationForLocalNames;
    String displayName;
	if (preferLongName) {
	            displayName = getZoneLongName(timeZoneNames, tz, now);
	        } else {
	            // Canonicalize the zone ID for ICU. It will only return valid strings for zone IDs
	            // that match ICUs zone IDs (which are similar but not guaranteed the same as those
	            // in timezones.xml). timezones.xml and related files uses the IANA IDs. ICU IDs are
	            // stable and IANA IDs have changed over time so they have drifted.
	            // See http://bugs.icu-project.org/trac/ticket/13070 / http://b/36469833.
	            String canonicalZoneId = android.icu.util.TimeZone.getCanonicalID(tz.getID());
	            if (canonicalZoneId == null) {
	                canonicalZoneId = tz.getID();
	            }
	            displayName = timeZoneNames.getExemplarLocationName(canonicalZoneId);
	            if (displayName == null || displayName.isEmpty()) {
	                // getZoneExemplarLocation can return null. Fall back to the long name.
	                displayName = getZoneLongName(timeZoneNames, tz, now);
	            }
	        }
	        return displayName;
}

/**
 * Returns the long name for the timezone for the given locale at the time specified.
 * Can return {@code null}.
 */
@RequiresApi(api = Build.VERSION_CODES.N)
private static String getZoneLongName(TimeZoneNames names, TimeZone tz, Date now) {
    final TimeZoneNames.NameType nameType =
            tz.inDaylightTime(now) ? TimeZoneNames.NameType.LONG_DAYLIGHT
                    : TimeZoneNames.NameType.LONG_STANDARD;
    return names.getDisplayName(tz.getID(), nameType, now.getTime());
}
private static void appendWithTtsSpan(SpannableStringBuilder builder, CharSequence content,
        TtsSpan span) {
    int start = builder.length();
    builder.append(content);
    builder.setSpan(span, start, builder.length(), 0);
}
// Input must be positive. minDigits must be 1 or 2.
private static String formatDigits(int input, int minDigits, String localizedDigits) {
    final int tens = input / 10;
    final int units = input % 10;
    StringBuilder builder = new StringBuilder(minDigits);
    if (input >= 10 || minDigits == 2) {
        builder.append(localizedDigits.charAt(tens));
    }
    builder.append(localizedDigits.charAt(units));
    return builder.toString();
}
@SuppressLint("NewApi")
@RequiresApi(api = Build.VERSION_CODES.N)
public static CharSequence getGmtOffsetText(TimeZoneFormat tzFormatter, Locale locale,
                                            TimeZone tz, Date now) {
    final SpannableStringBuilder builder = new SpannableStringBuilder();

    final String gmtPattern = tzFormatter.getGMTPattern();
    final int placeholderIndex = gmtPattern.indexOf("{0}");
    final String gmtPatternPrefix, gmtPatternSuffix;
    if (placeholderIndex == -1) {
        // Bad pattern. Replace with defaults.
        gmtPatternPrefix = "GMT";
        gmtPatternSuffix = "";
    } else {
        gmtPatternPrefix = gmtPattern.substring(0, placeholderIndex);
        gmtPatternSuffix = gmtPattern.substring(placeholderIndex + 3); // After the "{0}".
    }
    if (!gmtPatternPrefix.isEmpty()) {
        appendWithTtsSpan(builder, gmtPatternPrefix,
                new TtsSpan.TextBuilder(gmtPatternPrefix).build());
    }

    int offsetMillis = tz.getOffset(now.getTime());
    final boolean negative = offsetMillis < 0;
    final TimeZoneFormat.GMTOffsetPatternType patternType;
    if (negative) {
        offsetMillis = -offsetMillis;
        patternType = TimeZoneFormat.GMTOffsetPatternType.NEGATIVE_HM;
    } else {
        patternType = TimeZoneFormat.GMTOffsetPatternType.POSITIVE_HM;
    }
    final String gmtOffsetPattern = tzFormatter.getGMTOffsetPattern(patternType);
    final String localizedDigits = tzFormatter.getGMTOffsetDigits();

    final int offsetHours = (int) (offsetMillis / DateUtils.HOUR_IN_MILLIS);
    final int offsetMinutes = (int) (offsetMillis / DateUtils.MINUTE_IN_MILLIS);
    final int offsetMinutesRemaining = Math.abs(offsetMinutes) % 60;
    for (int i = 0; i < gmtOffsetPattern.length(); i++) {
        char c = gmtOffsetPattern.charAt(i);
        if (c == '+' || c == '-' || c == '\u2212' /* MINUS SIGN */) {
            final String sign = String.valueOf(c);
            appendWithTtsSpan(builder, sign, new TtsSpan.VerbatimBuilder(sign).build());
        } else if (c == 'H' || c == 'm') {
            final int numDigits;
            if (i + 1 < gmtOffsetPattern.length() && gmtOffsetPattern.charAt(i + 1) == c) {
                numDigits = 2;
                i++; // Skip the next formatting character.
            } else {
                numDigits = 1;
            }
            final int number;
            final String unit;
            if (c == 'H') {
                number = offsetHours;
                unit = "hour";
            } else { // c == 'm'
                number = offsetMinutesRemaining;
                unit = "minute";
            }
            appendWithTtsSpan(builder, formatDigits(number, numDigits, localizedDigits),
                    new TtsSpan.MeasureBuilder().setNumber(number).setUnit(unit).build());
        } else {
            builder.append(c);
        }
    }
    if (!gmtPatternSuffix.isEmpty()) {
        appendWithTtsSpan(builder, gmtPatternSuffix,
                new TtsSpan.TextBuilder(gmtPatternSuffix).build());
    }
	 CharSequence gmtText = new SpannableString(builder);
	
	        // Ensure that the "GMT+" stays with the "00:00" even if the digits are RTL.
	        final BidiFormatter bidiFormatter = BidiFormatter.getInstance();
	        boolean isRtl = TextUtils.getLayoutDirectionFromLocale(locale) == View.LAYOUT_DIRECTION_RTL;
	        //gmtText = bidiFormatter.unicodeWrap(gmtText, isRtl ? TextDirectionHeuristicsCompat.RTL : TextDirectionHeuristicsCompat.LTR);
	        gmtText = bidiFormatter.unicodeWrap(gmtText, isRtl ? TextDirectionHeuristics.RTL : TextDirectionHeuristics.LTR);
	        return gmtText;
	    }
	@VisibleForTesting
	    public static final class ZoneGetterData {
	        public final String[] olsonIdsToDisplay;
	        public final CharSequence[] gmtOffsetTexts;
	        public final TimeZone[] timeZones;
	        public final Set<String> localZoneIds;
	        public final int zoneCount;
	
	        @RequiresApi(api = Build.VERSION_CODES.N)
	        public ZoneGetterData(Context context) {
	            final Locale locale = context.getResources().getConfiguration().locale;
	            final TimeZoneFormat tzFormatter = TimeZoneFormat.getInstance(locale);
	            final Date now = new Date();
	            final List<String> olsonIdsToDisplayList = readTimezonesToDisplay(context);
				// Load all the data needed to display time zones
	            zoneCount = olsonIdsToDisplayList.size();
	            olsonIdsToDisplay = new String[zoneCount];
	            timeZones = new TimeZone[zoneCount];
	            gmtOffsetTexts = new CharSequence[zoneCount];
	            for (int i = 0; i < zoneCount; i++) {
	                final String olsonId = olsonIdsToDisplayList.get(i);
	                olsonIdsToDisplay[i] = olsonId;
	                final TimeZone tz = TimeZone.getTimeZone(olsonId);
	                timeZones[i] = tz;
	                gmtOffsetTexts[i] = getGmtOffsetText(tzFormatter, locale, tz, now);
	            }
	            // Create a lookup of local zone IDs.
	            final List<String> zoneIds = lookupTimeZoneIdsByCountry(locale.getCountry());
	            localZoneIds = new HashSet<>(zoneIds);
	        }
	        @VisibleForTesting
	        public List<String> lookupTimeZoneIdsByCountry(String country) {
	            return TimeZoneFinder.getInstance().lookupTimeZoneIdsByCountry(country);
	        }
	    }
	}

将下面的方法放到主函数中,下边的方法调用上边的那个类

String[] olsonIdsToDisplay;
CharSequence[] gmtOffsetTexts;
TimeZone[] timeZones;
int zoneCount;
@SuppressLint("NewApi")
    public void getTimeZone(String timeZone) {
        ZoneGetter.ZoneGetterData zoneGetterData = new ZoneGetter.ZoneGetterData(mCtx);
        final Locale locale = mCtx.getResources().getConfiguration().locale;
        final TimeZoneFormat tzFormatter = TimeZoneFormat.getInstance(locale);
        final Date now = new Date();
        final List<String> olsonIdsToDisplayList = ZoneGetter.readTimezonesToDisplay(mCtx);
		// Load all the data needed to display time zones
        zoneCount = olsonIdsToDisplayList.size();
        olsonIdsToDisplay = new String[zoneCount];
        timeZones = new TimeZone[zoneCount];
        gmtOffsetTexts = new CharSequence[zoneCount];
        for (int i = 0; i < zoneCount; i++) {
            final String olsonId = olsonIdsToDisplayList.get(i);
            olsonIdsToDisplay[i] = olsonId;
            final TimeZone tz = TimeZone.getTimeZone(olsonId);
            timeZones[i] = tz;
            gmtOffsetTexts[i] = ZoneGetter.getGmtOffsetText(tzFormatter, locale, tz, now);
            System.out.println(timeZones[i].getID() + "---->" + gmtOffsetTexts[i]);
            if (timeZone.equals(gmtOffsetTexts[i].toString())) {
                ((AlarmManager) mCtx.getSystemService(Context.ALARM_SERVICE)).setTimeZone(timeZones[i].getID());
                return;
            }
        }
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值