]> git.ktnx.net Git - mobile-ledger-staging.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionRowHolder.java
fix many lint errors/warnings
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / ui / transaction_list / TransactionRowHolder.java
1 /*
2  * Copyright © 2020 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe 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  * MoLe 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 MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.transaction_list;
19
20 import android.view.View;
21 import android.widget.LinearLayout;
22 import android.widget.TextView;
23
24 import androidx.annotation.NonNull;
25 import androidx.cardview.widget.CardView;
26 import androidx.constraintlayout.widget.ConstraintLayout;
27 import androidx.recyclerview.widget.RecyclerView;
28
29 import net.ktnx.mobileledger.R;
30
31 class TransactionRowHolder extends RecyclerView.ViewHolder {
32     final TextView tvDescription;
33     final TextView tvComment;
34     final LinearLayout tableAccounts;
35     final ConstraintLayout row;
36     final ConstraintLayout vDelimiter;
37     final CardView vTransaction;
38     final TextView tvDelimiterMonth, tvDelimiterDate;
39     final View vDelimiterThick;
40     public TransactionRowHolder(@NonNull View itemView) {
41         super(itemView);
42         this.row = itemView.findViewById(R.id.transaction_row);
43         this.tvDescription = itemView.findViewById(R.id.transaction_row_description);
44         this.tvComment = itemView.findViewById(R.id.transaction_comment);
45         this.tableAccounts = itemView.findViewById(R.id.transaction_row_acc_amounts);
46         this.vDelimiter = itemView.findViewById(R.id.transaction_delimiter);
47         this.vTransaction = itemView.findViewById(R.id.transaction_card_view);
48         this.tvDelimiterDate = itemView.findViewById(R.id.transaction_delimiter_date);
49         this.tvDelimiterMonth = itemView.findViewById(R.id.transaction_delimiter_month);
50         this.vDelimiterThick = itemView.findViewById(R.id.transaction_delimiter_thick);
51     }
52 }