Is there any way to order the lines inside of SharedPreferences?
I'm trying to add keys with a number, but they are shown without order.
<string name="Score_3">96</string>
<string name="Score_1">256</string>
<string name="Score_4">26</string>
<string name="Score_2">0</string>
I would like to be shown like this. Is this possible?
<string name="Score_1">256</string>
<string name="Score_2">0</string>
<string name="Score_3">96</string>
<string name="Score_4">26</string>```
Thanks.