X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2FTransactionListAdapter.java;h=559a247beb3b495223d5d68921a3c6e57ecb9fd8;hp=a6842e27b4f5a5e40e77f4cf69dcceeddb755bd6;hb=8efd47224289c5cd27952e448441b2197f9640d0;hpb=b8e535a8ce182cda0b860105f7d22b7bc9d62067 diff --git a/app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java b/app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java index a6842e27..559a247b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java +++ b/app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java @@ -48,6 +48,12 @@ class TransactionListAdapter } public void onBindViewHolder(@NonNull TransactionRowHolder holder, int position) { + // in a race when transaction list 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 (position >= transactions.size()) return; + LedgerTransaction tr = transactions.get(position); Context ctx = holder.row.getContext(); @@ -67,7 +73,7 @@ class TransactionListAdapter LinearLayout.LayoutParams.WRAP_CONTENT)); row.setGravity(Gravity.CENTER_VERTICAL); row.setOrientation(LinearLayout.HORIZONTAL); - row.setPaddingRelative(dp2px(ctx, 8), 0, dp2px(ctx, 8), 0); + row.setPaddingRelative(dp2px(ctx, 8), 0, 0, 8); accName = new TextView(ctx); accName.setLayoutParams( new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, @@ -77,7 +83,7 @@ class TransactionListAdapter accAmount = new TextView(ctx); LinearLayout.LayoutParams llp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, - LinearLayout.LayoutParams.WRAP_CONTENT, 1f); + LinearLayout.LayoutParams.WRAP_CONTENT); llp.setMarginEnd(0); accAmount.setLayoutParams(llp); accAmount.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END); @@ -125,7 +131,7 @@ class TransactionListAdapter ConstraintLayout row; public TransactionRowHolder(@NonNull View itemView) { super(itemView); - this.row = (ConstraintLayout) itemView; + this.row = itemView.findViewById(R.id.transaction_row); this.tvDescription = itemView.findViewById(R.id.transaction_row_description); this.tvDate = itemView.findViewById(R.id.transaction_row_date); this.tableAccounts = itemView.findViewById(R.id.transaction_row_acc_amounts);