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;fp=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Ftransaction_list%2FTransactionListAdapter.java;h=599a9f8c8024e39e020a63485be749e1f5e0f27d;hp=67a4922b175be66ffac07f41fd0e8b81dfd651a2;hb=0b96f4968cd5c0b36474b94b94ec6dcf6699f60c;hpb=3c459e59ba3ac6082d65984359fcb6276965de4d 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 67a4922b..599a9f8c 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 @@ -17,51 +17,29 @@ 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.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.AsyncListDiffer; import androidx.recyclerview.widget.DiffUtil; 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.databinding.LastUpdateLayoutBinding; +import net.ktnx.mobileledger.databinding.TransactionDelimiterBinding; +import net.ktnx.mobileledger.databinding.TransactionListRowBinding; import net.ktnx.mobileledger.model.LedgerTransaction; -import net.ktnx.mobileledger.model.LedgerTransactionAccount; import net.ktnx.mobileledger.model.TransactionListItem; -import net.ktnx.mobileledger.ui.MainModel; -import net.ktnx.mobileledger.utils.Colors; -import net.ktnx.mobileledger.utils.Globals; import net.ktnx.mobileledger.utils.Logger; import net.ktnx.mobileledger.utils.Misc; -import net.ktnx.mobileledger.utils.SimpleDate; -import java.text.DateFormat; -import java.util.GregorianCalendar; import java.util.List; import java.util.Locale; -import java.util.TimeZone; -public class TransactionListAdapter extends RecyclerView.Adapter { - private final MainModel model; +public class TransactionListAdapter extends RecyclerView.Adapter { private final AsyncListDiffer listDiffer; - public TransactionListAdapter(MainModel model) { + public TransactionListAdapter() { super(); - this.model = model; listDiffer = new AsyncListDiffer<>(this, new DiffUtil.ItemCallback() { @Override @@ -94,7 +72,9 @@ public class TransactionListAdapter extends RecyclerView.Adapter { - @Override - protected Void doInBackground(TransactionLoaderParams... p) { - LedgerTransaction tr = p[0].transaction; - - SQLiteDatabase db = App.getDatabase(); - tr.loadData(db); - - publishProgress(new TransactionLoaderStep(p[0].holder, p[0].position, tr)); - - int rowIndex = 0; - // FIXME ConcurrentModificationException in ArrayList$ltr.next (ArrayList.java:831) - for (LedgerTransactionAccount acc : tr.getAccounts()) { -// debug(c.getAccountName(), acc.getAmount())); - publishProgress(new TransactionLoaderStep(p[0].holder, acc, rowIndex++, - p[0].boldAccountName)); - } - - publishProgress(new TransactionLoaderStep(p[0].holder, p[0].position, rowIndex)); - - return null; - } - @Override - protected void onProgressUpdate(TransactionLoaderStep... values) { - super.onProgressUpdate(values); - TransactionLoaderStep step = values[0]; - TransactionRowHolder holder = step.getHolder(); - - switch (step.getStep()) { - case HEAD: - holder.tvDescription.setText(step.getTransaction() - .getDescription()); - String trComment = Misc.emptyIsNull(step.getTransaction() - .getComment()); - if (trComment == null) - holder.tvComment.setVisibility(View.GONE); - else { - holder.tvComment.setText(trComment); - holder.tvComment.setVisibility(View.VISIBLE); - } - -// if (step.isOdd()) -// holder.row.setBackgroundColor(Colors.tableRowDarkBG); -// else -// holder.row.setBackgroundColor(Colors.tableRowLightBG); - - break; - case ACCOUNTS: - int rowIndex = step.getAccountPosition(); - Context ctx = holder.row.getContext(); - LinearLayout row = (LinearLayout) holder.tableAccounts.getChildAt(rowIndex); - if (row == null) { - row = new LinearLayout(ctx); - LayoutInflater inflater = ((Activity) ctx).getLayoutInflater(); - inflater.inflate(R.layout.transaction_list_row_accounts_table_row, row); - holder.tableAccounts.addView(row); - } - TextView dummyText = row.findViewById(R.id.dummy_text); - TextView accName = row.findViewById(R.id.transaction_list_acc_row_acc_name); - TextView accComment = - row.findViewById(R.id.transaction_list_acc_row_acc_comment); - TextView accAmount = row.findViewById(R.id.transaction_list_acc_row_acc_amount); - LedgerTransactionAccount acc = step.getAccount(); - - -// debug("tmp", String.format("showing acc row %d: %s %1.2f", rowIndex, -// acc.getAccountName(), acc.getAmount())); - - String boldAccountName = step.getBoldAccountName(); - if ((boldAccountName != null) && acc.getAccountName() - .startsWith(boldAccountName)) - { - accName.setTextColor(Colors.secondary); - accAmount.setTextColor(Colors.secondary); - - SpannableString ss = new SpannableString(acc.getAccountName()); - ss.setSpan(new StyleSpan(Typeface.BOLD), 0, boldAccountName.length(), - Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); - accName.setText(ss); - } - else { - @ColorInt int textColor = dummyText.getTextColors() - .getDefaultColor(); - accName.setTextColor(textColor); - accAmount.setTextColor(textColor); - accName.setText(acc.getAccountName()); - } - - String comment = acc.getComment(); - if (comment != null && !comment.isEmpty()) { - accComment.setText(comment); - accComment.setVisibility(View.VISIBLE); - } - else { - accComment.setVisibility(View.GONE); - } - accAmount.setText(acc.toString()); - - break; - case DONE: - int accCount = step.getAccountCount(); - if (holder.tableAccounts.getChildCount() > accCount) { - holder.tableAccounts.removeViews(accCount, - holder.tableAccounts.getChildCount() - accCount); - } - -// debug("transactions", -// String.format("Position %d fill done", step.getPosition())); - } - } - } - - private static class TransactionLoaderParams { - final LedgerTransaction transaction; - final TransactionRowHolder holder; - final int position; - final String boldAccountName; - TransactionLoaderParams(LedgerTransaction transaction, TransactionRowHolder holder, - int position, String boldAccountName) { - this.transaction = transaction; - this.holder = holder; - this.position = position; - this.boldAccountName = boldAccountName; - } - } } \ No newline at end of file