]> git.ktnx.net Git - mobile-ledger.git/commitdiff
avoid deprecated Date.getMonth API
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Mon, 18 Feb 2019 20:19:22 +0000 (22:19 +0200)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Mon, 18 Feb 2019 20:19:22 +0000 (22:19 +0200)
app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java

index 6cf729dc9d4bcfe977f2c9284b3ea35906cce967..361458e4d39ea462fbb71645fe87eb2b83cb9aa3 100644 (file)
@@ -44,6 +44,8 @@ import net.ktnx.mobileledger.utils.MLDB;
 
 import java.text.DateFormat;
 import java.util.Date;
+import java.util.GregorianCalendar;
+import java.util.TimeZone;
 
 import static net.ktnx.mobileledger.utils.DimensionUtils.dp2px;
 
@@ -86,7 +88,10 @@ public class TransactionListAdapter extends RecyclerView.Adapter<TransactionRowH
                 holder.vDelimiter.setVisibility(View.VISIBLE);
                 holder.tvDelimiterDate.setText(DateFormat.getDateInstance().format(date));
                 if (item.isMonthShown()) {
-                    holder.tvDelimiterMonth.setText(Globals.monthNames[date.getMonth()]);
+                    GregorianCalendar cal = new GregorianCalendar(TimeZone.getDefault());
+                    cal.setTime(date);
+                    holder.tvDelimiterMonth
+                            .setText(Globals.monthNames[cal.get(GregorianCalendar.MONTH)]);
                     holder.tvDelimiterMonth.setVisibility(View.VISIBLE);
                     //                holder.vDelimiterLine.setBackgroundResource(R.drawable.dashed_border_8dp);
                     holder.vDelimiterLine.setVisibility(View.GONE);