-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow the user to change the Date and Time Format #138
Comments
Date and time format should follow the device settings. To achieve that you need to use android.text.format.DateFormat.getTimeFormat() to format dates. |
Which screen in particular are you referring to? I would appreciate if you could please add screenshots and highlight the dates. |
I hope this works. I'm referring to the talk detail view. |
What date formatting exactly would you like? I just checked the formatting when I run the device with German resp. English locale. Based on your example screenshot the output would be:
The formatting is based on |
I prefer ISO8601 format. Unfortunately there is no way to set this in the android locale. |
Understood. - But as pointed out by @cbeyls Android apps follow the device locale settings. The only option that I see to let you customize the date format is by introducing an option in the application settings. |
Haven't written any Java/Android for several years, so take everything with a grain of salt. |
+ New: Using ConnectivityManager#registerDefaultNetworkCallback for Android Nougat and newer. + NetworkInfo#isConnectedOrConnecting and ConnectivityManager#CONNECTIVITY_ACTION have been deprecated in API level 28. + Related commit: 49a2bbf. + Relates to issue tuxmobil#138.
I would prefer to use ISO 8601 dates and times instead of the GER/EU time format.
My Android device is set to English, but with the data/time preferences set to ISO8601.
Relevant views are the detail talk view and favorites list view.
The text was updated successfully, but these errors were encountered: