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=96de4b64a017501b4e7a842717e41def70768119;hp=96933eeb84759cc43470eccef9a352510c30c96d;hb=ff27cd8c41424676ec046c58448d23cd4313d1dc;hpb=19867626f491b4930a1c02a58ad515b52b75596d 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 96933eeb..96de4b64 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,81 +1,128 @@ /* - * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * Copyright © 2020 Damyan Ivanov. + * 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; +import android.app.Activity; 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.view.Gravity; +import android.text.Spannable; +import android.text.SpannableString; +import android.text.style.StyleSpan; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; +import androidx.annotation.ColorInt; +import androidx.annotation.NonNull; +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 net.ktnx.mobileledger.utils.Misc; +import net.ktnx.mobileledger.utils.SimpleDate; -import static net.ktnx.mobileledger.utils.DimensionUtils.dp2px; +import java.text.DateFormat; +import java.util.GregorianCalendar; +import java.util.TimeZone; public class TransactionListAdapter extends RecyclerView.Adapter { - private String boldAccountName; public void onBindViewHolder(@NonNull TransactionRowHolder holder, int position) { - LedgerTransaction tr = TransactionListViewModel.getTransaction(position); + TransactionListItem item = TransactionListViewModel.getTransactionListItem(position); + // 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; + if (item == null) + return; + + switch (item.getType()) { + case TRANSACTION: + holder.vTransaction.setVisibility(View.VISIBLE); + holder.vDelimiter.setVisibility(View.GONE); + LedgerTransaction tr = item.getTransaction(); -// Log.d("transactions", String.format("Filling position %d with %d accounts", position, -// tr.getAccounts().size())); + // debug("transactions", String.format("Filling position %d with %d + // accounts", position, + // tr.getAccounts().size())); - TransactionLoader loader = new TransactionLoader(); - loader.execute(new TransactionLoaderParams(tr, holder, position, boldAccountName)); + 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: + SimpleDate date = item.getDate(); + holder.vTransaction.setVisibility(View.GONE); + holder.vDelimiter.setVisibility(View.VISIBLE); + holder.tvDelimiterDate.setText(DateFormat.getDateInstance() + .format(date.toDate())); + if (item.isMonthShown()) { + GregorianCalendar cal = new GregorianCalendar(TimeZone.getDefault()); + cal.setTime(date.toDate()); + holder.tvDelimiterMonth.setText( + Globals.monthNames[cal.get(GregorianCalendar.MONTH)]); + holder.tvDelimiterMonth.setVisibility(View.VISIBLE); + // holder.vDelimiterLine.setBackgroundResource(R.drawable + // .dashed_border_8dp); + holder.vDelimiterThick.setVisibility(View.VISIBLE); + } + else { + holder.tvDelimiterMonth.setVisibility(View.GONE); + // holder.vDelimiterLine.setBackgroundResource(R.drawable + // .dashed_border_1dp); + 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); + .inflate(R.layout.transaction_list_row, parent, false); return new TransactionRowHolder(row); } @Override public int getItemCount() { - return TransactionListViewModel.getTransactionCount(); + return Data.transactions.size(); } - public void setBoldAccountName(String boldAccountName) { - this.boldAccountName = boldAccountName; - } - public void resetBoldAccountName() { - this.boldAccountName = null; - } - enum LoaderStep {HEAD, ACCOUNTS, DONE} private static class TransactionLoader @@ -83,15 +130,17 @@ public class TransactionListAdapter extends RecyclerView.Adapter