I trying to find out is it thread safe to use
DateFormat dateFormat =android.text.format.DateFormat.getDateFormat(getApplicationContext());
I'm well aware that object DateFormat is not thread safe, but the previous snippet seems quite popular way for writing android programs e.g. How do you format date and time in Android?, and I haven't noticed any mention of the threading issue.