]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java
working transaction list retrieval
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / TransactionListAdapter.java
1 /*
2  * Copyright © 2018 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * Mobile-Ledger is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger;
19
20 import android.content.Context;
21 import android.content.res.Resources;
22 import android.os.Build;
23 import android.support.annotation.NonNull;
24 import android.support.v7.widget.RecyclerView;
25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
28 import android.widget.LinearLayout;
29 import android.widget.TableLayout;
30 import android.widget.TextView;
31
32 import net.ktnx.mobileledger.model.LedgerTransaction;
33
34 import java.util.List;
35
36 class TransactionListAdapter
37         extends RecyclerView.Adapter<TransactionListAdapter.TransactionRowHolder> {
38     private List<LedgerTransaction> transactions;
39
40     TransactionListAdapter(List<LedgerTransaction> transactions) {
41         this.transactions = transactions;
42     }
43
44     public void onBindViewHolder(@NonNull TransactionRowHolder holder, int position) {
45         LedgerTransaction tr = transactions.get(position);
46         Context ctx = holder.row.getContext();
47         Resources rm = ctx.getResources();
48
49         holder.tvDescription.setText(String.format("%s\n%s", tr.getDescription(), tr.getDate()));
50 //        holder.tableAccounts.setText(acc.getAmountsString());
51
52         if (position % 2 == 0) {
53             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) holder.row
54                     .setBackgroundColor(rm.getColor(R.color.table_row_even_bg, ctx.getTheme()));
55             else holder.row.setBackgroundColor(rm.getColor(R.color.table_row_even_bg));
56         }
57         else {
58             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) holder.row
59                     .setBackgroundColor(rm.getColor(R.color.drawer_background, ctx.getTheme()));
60             else holder.row.setBackgroundColor(rm.getColor(R.color.drawer_background));
61         }
62
63         holder.row.setTag(R.id.POS, position);
64     }
65
66     @NonNull
67     @Override
68     public TransactionRowHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
69         View row = LayoutInflater.from(parent.getContext())
70                 .inflate(R.layout.transaction_list_row, parent, false);
71         return new TransactionRowHolder(row);
72     }
73
74     @Override
75     public int getItemCount() {
76         return transactions.size();
77     }
78     class TransactionRowHolder extends RecyclerView.ViewHolder {
79         TextView tvDescription;
80         TableLayout tableAccounts;
81         LinearLayout row;
82         public TransactionRowHolder(@NonNull View itemView) {
83             super(itemView);
84             this.row = (LinearLayout) itemView;
85             this.tvDescription = itemView.findViewById(R.id.transaction_row_description);
86             this.tableAccounts = itemView.findViewById(R.id.transaction_row_acc_amounts);
87         }
88     }
89 }