About 8,820,000 results
Open links in new tab
  1. How to format date and time in Android? - Stack Overflow

    How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?

  2. android - format statement in a string resource file - Stack Overflow

    This Stack Overflow page discusses formatting statements in Android string resource files and provides solutions to related issues.

  3. Code formatting shortcuts in Android Studio for Operation Systems

    Feb 17, 2017 · In Android studio 3.5, there is problem with rearranging the xml code, it also rearrange the views as well, so need to use these settings first. Settings -> Editor -> Code Style -> XML-> Set …

  4. How can I get current date in Android? - Stack Overflow

    Dec 28, 2011 · 185 Its simple one line code for get current Date in this yyyy-MM-dd format you can use your format that you want :

  5. filesystems - What is Android's file system? - Stack Overflow

    Mar 11, 2010 · For example, Samsung Galaxy S phones uses Samsung RFS (proprietary). However, the Nexus S (also made by Samsung) with Android 2.3 uses Ext4 (presumably because Google told …

  6. android - Difference between apk (.apk) and app bundle (.aab) - Stack ...

    Jan 9, 2019 · 134 App bundles are publishing format, whereas APK (Android application Package) is the packaging format which eventually will be installed on device. Google uses app bundle to generate …

  7. Date formatting based on user locale on android - Stack Overflow

    Jun 19, 2012 · 82 I want to display a date of birth based on the user locale. In my application, one of my fields is the date of birth, which is currently in the format dd/mm/yyyy. So if the user changes his …

  8. android - How to display formatted amounts in TextView? - Stack …

    Sep 6, 2016 · But, I am moving this code to the layout files with android data-binding and is there an easy way to format and show amounts in android? Like symbol[space]amount where amount should …

  9. Android: String format with Double value - Stack Overflow

    Aug 29, 2012 · 40 %.0f is the format string for a float, with 0 decimal places. The values you're passing to String.format are String, String when it needs to be Double, Double. You do not need to convert …

  10. android - Convert date and time to Iso 8601 in Kotlin - Stack Overflow

    2022 -> for year 3 -> for month 20 -> for day 16 -> hour 58 -> minute How can I convert these values to Iso 8601 date format? I need like this format: "2022-03-20T16:58:00.288Z"