X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Ftransaction_list%2FTransactionListAdapter.java;h=13983309e3830f2aeeaedf135b90c868a2d89ba1;hp=febca0191ecb02525c8bd47b7205f26dcb8b76f5;hb=5b1ffce81ec1a7b64eb98db818eddd9a4dd43418;hpb=e12bae55fb75c0c30055dd34ded195e75feb3844 diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java index febca019..13983309 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.transaction_list; @@ -21,9 +21,9 @@ import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.graphics.Typeface; import android.os.AsyncTask; -import android.support.annotation.NonNull; -import android.support.v7.widget.AppCompatTextView; -import android.support.v7.widget.RecyclerView; +import android.text.Spannable; +import android.text.SpannableString; +import android.text.style.StyleSpan; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; @@ -31,66 +31,86 @@ import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.appcompat.widget.AppCompatTextView; +import androidx.recyclerview.widget.RecyclerView; + +import net.ktnx.mobileledger.App; import net.ktnx.mobileledger.R; +import net.ktnx.mobileledger.model.Data; import net.ktnx.mobileledger.model.LedgerTransaction; import net.ktnx.mobileledger.model.LedgerTransactionAccount; import net.ktnx.mobileledger.model.TransactionListItem; +import net.ktnx.mobileledger.utils.Colors; import net.ktnx.mobileledger.utils.Globals; -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; public class TransactionListAdapter extends RecyclerView.Adapter { - private String boldAccountName; public void onBindViewHolder(@NonNull TransactionRowHolder holder, int position) { TransactionListItem item = TransactionListViewModel.getTransactionListItem(position); - if (item.getType() == TransactionListItem.Type.TRANSACTION) { - holder.vTransaction.setVisibility(View.VISIBLE); - holder.vDelimiter.setVisibility(View.GONE); - LedgerTransaction tr = item.getTransaction(); - // in a race when transaction value is reduced, but the model hasn't been notified yet - // the view will disappear when the notifications reaches the model, so by simply omitting - // the out-of-range get() call nothing bad happens - just a to-be-deleted view remains - // a bit longer - if (tr == null) return; - - LedgerTransaction previous = null; - TransactionListItem previousItem = null; - if (position > 0) - previousItem = TransactionListViewModel.getTransactionListItem(position - 1); - -// Log.d("transactions", String.format("Filling position %d with %d accounts", position, -// tr.getAccounts().size())); - - TransactionLoader loader = new TransactionLoader(); - loader.execute( - new TransactionLoaderParams(tr, previous, holder, position, boldAccountName)); - - // WORKAROUND what seems to be a bug in CardHolder somewhere - // when a view that was previously holding a delimiter is re-purposed - // occasionally it stays too short (not high enough) - holder.vTransaction.measure(View.MeasureSpec - .makeMeasureSpec(holder.itemView.getWidth(), View.MeasureSpec.EXACTLY), - View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED)); - } - else { - Date date = item.getDate(); - holder.vTransaction.setVisibility(View.GONE); - holder.vDelimiter.setVisibility(View.VISIBLE); - holder.tvDelimiterDate.setText(DateFormat.getDateInstance().format(date)); - holder.tvDelimiterMonth - .setText(item.isMonthShown() ? Globals.monthNames[date.getMonth()] : ""); + // in a race when transaction value is reduced, but the model hasn't been notified yet + // the view will disappear when the notifications reaches the model, so by simply omitting + // the out-of-range get() call nothing bad happens - just a to-be-deleted view remains + // a bit longer + if (item == null) return; + + switch (item.getType()) { + case TRANSACTION: + holder.vTransaction.setVisibility(View.VISIBLE); + holder.vDelimiter.setVisibility(View.GONE); + LedgerTransaction tr = item.getTransaction(); + + // debug("transactions", String.format("Filling position %d with %d accounts", position, + // tr.getAccounts().size())); + + TransactionLoader loader = new TransactionLoader(); + loader.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, + new TransactionLoaderParams(tr, holder, position, Data.accountFilter.getValue(), + item.isOdd())); + + // WORKAROUND what seems to be a bug in CardHolder somewhere + // when a view that was previously holding a delimiter is re-purposed + // occasionally it stays too short (not high enough) + holder.vTransaction.measure(View.MeasureSpec + .makeMeasureSpec(holder.itemView.getWidth(), View.MeasureSpec.EXACTLY), + View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED)); + break; + case DELIMITER: + Date date = item.getDate(); + holder.vTransaction.setVisibility(View.GONE); + holder.vDelimiter.setVisibility(View.VISIBLE); + holder.tvDelimiterDate.setText(DateFormat.getDateInstance().format(date)); + if (item.isMonthShown()) { + 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); + holder.vDelimiterThick.setVisibility(View.VISIBLE); + } + else { + holder.tvDelimiterMonth.setVisibility(View.GONE); + // holder.vDelimiterLine.setBackgroundResource(R.drawable.dashed_border_1dp); + holder.vDelimiterLine.setVisibility(View.VISIBLE); + holder.vDelimiterThick.setVisibility(View.GONE); + } + break; } } @NonNull @Override public TransactionRowHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { -// Log.d("perf", "onCreateViewHolder called"); +// debug("perf", "onCreateViewHolder called"); View row = LayoutInflater.from(parent.getContext()) .inflate(R.layout.transaction_list_row, parent, false); return new TransactionRowHolder(row); @@ -98,38 +118,25 @@ public class TransactionListAdapter extends RecyclerView.Adapter { @Override protected Void doInBackground(TransactionLoaderParams... p) { LedgerTransaction tr = p[0].transaction; - LedgerTransaction previous = p[0].previousTransaction; + boolean odd = p[0].odd; - SQLiteDatabase db = MLDB.getReadableDatabase(); + SQLiteDatabase db = App.getDatabase(); tr.loadData(db); - boolean showDate; - if (previous == null) showDate = true; - else { - previous.loadData(db); - showDate = !previous.getDate().equals(tr.getDate()); - } - publishProgress(new TransactionLoaderStep(p[0].holder, p[0].position, tr, showDate)); + publishProgress(new TransactionLoaderStep(p[0].holder, p[0].position, tr, odd)); int rowIndex = 0; + // FIXME ConcurrentModificationException in ArrayList$ltr.next (ArrayList.java:831) for (LedgerTransactionAccount acc : tr.getAccounts()) { -// Log.d(c.getAccountName(), acc.getAmount())); +// debug(c.getAccountName(), acc.getAmount())); publishProgress(new TransactionLoaderStep(p[0].holder, acc, rowIndex++, p[0].boldAccountName)); } @@ -148,12 +155,8 @@ public class TransactionListAdapter extends RecyclerView.Adapter