Made formatters non-static so configuration changes are applied

This commit is contained in:
M66B
2019-03-21 06:50:14 +00:00
parent 099c1bc9d5
commit 123b979aba
8 changed files with 11 additions and 11 deletions

View File

@@ -56,8 +56,8 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
private List<TupleAccountEx> items = new ArrayList<>();
private static NumberFormat nf = NumberFormat.getNumberInstance();
private static final DateFormat df = SimpleDateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
private NumberFormat nf = NumberFormat.getNumberInstance();
private DateFormat df = SimpleDateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
private View view;