根据本地化更改日期选择器
我在我的应用程序中使用了本地化来进行区域设置和语言设置。但问题是它也会根据区域设置更改“日期选择器”。我不希望这种情况发生。
我必须解析这个日期以供以后使用。所以我希望日期选择器在所有区域设置中保持相同。
让我知道是否有人有解决方案。
谢谢
斯内哈
I have used Localization in my application for locale and language setting. But the problem is it changes the "date Picker" too according to the locale. I do not want this to happen.
I have to parse this date for later purpose. So i want the date picker to remain same in all locale.
Let me know if any one has the solution.
thanks
Sneha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是在谈论
DatePicker
吗?如果是,那么它使用的格式对您来说并不重要,因为getYear()
、getMonth()
和getDayOfMonth()
方法无论格式如何,都将工作相同。Are you talking about the
DatePicker
? If yes, then the format it uses shouldn't matter to you, as thegetYear()
,getMonth()
andgetDayOfMonth()
methods will work the same, no matter the format.