Last active
August 10, 2022 07:15
-
-
Save rajohns08/f91277955ea87c9bf045 to your computer and use it in GitHub Desktop.
Android - string array for months
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<string-array name="months_array"> | |
<item>January</item> | |
<item>February</item> | |
<item>March</item> | |
<item>April</item> | |
<item>May</item> | |
<item>June</item> | |
<item>July</item> | |
<item>August</item> | |
<item>September</item> | |
<item>October</item> | |
<item>November</item> | |
<item>December</item> | |
</string-array> |
I guess we are taking this "copy paste" practice a bit too far :P
THANKS !
cheers!
Thank you! :D
Thankies
thaanks
For "MMM" format:
<string-array name="months_array">
<item>Jan</item>
<item>Feb</item>
<item>Mar</item>
<item>Apr</item>
<item>May</item>
<item>Jun</item>
<item>Jul</item>
<item>Aug</item>
<item>Sep</item>
<item>Oct</item>
<item>Nov</item>
<item>Dec</item>
</string-array>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!