如何更改上午和下午在时间选择器中大写?

时间:2019-06-25 10:02:22

标签: android timepicker

每当我将系统语言更改为加拿大英语时,即上午和下午。符号必须小写,否则总是大写

实际:

the a.m. and p.m. are in lower case. right now the system language is canadian english

预期:

the a.m. and p.m. are in uppercase. right now the system language is canadian french

simpleDateFormat()的代码:

 public SimpleDateFormat(String pattern, Locale locale)
    {
        if (pattern == null || locale == null) {
            throw new NullPointerException();
        }

        initializeCalendar(locale);
        this.pattern = pattern;
        this.formatData = DateFormatSymbols.getInstanceRef(locale);
        this.locale = locale;
        initialize(locale);
    }

0 个答案:

没有答案