admin
2021-05-13 4a8f1bec26519a25f073739534e653a4f7c9e11d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.tejia.lijin.app.util.ui;
 
import androidx.recyclerview.widget.RecyclerView;
 
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
 
import com.tejia.lijin.app.R;
 
public class GoodsRightViewHolder extends RecyclerView.ViewHolder {
 
    public TextView tv_name;
    public TextView tv_shop_name;
    public TextView tv_sale_num;
    public LinearLayout ll_labels;
    public TextView tv_coupon_amount;
    public TextView tv_fanli_amount;
    public TextView tv_hongbao_amount;
    public TextView tv_price;
    public TextView tv_actual_price1,tv_actual_price2;
 
 
    public GoodsRightViewHolder(View convertView) {
        super(convertView);
        ll_labels = convertView.findViewById(R.id.ll_labels);
        tv_name = convertView.findViewById(R.id.tv_name);
        tv_shop_name = convertView
                .findViewById(R.id.tv_shop_name);
        tv_sale_num = convertView
                .findViewById(R.id.tv_sale_num);
        tv_coupon_amount = convertView
                .findViewById(R.id.tv_coupon_amount);
        tv_fanli_amount = convertView.findViewById(R.id.tv_fanli_amount);
        tv_hongbao_amount = convertView.findViewById(R.id.tv_hongbao_amount);
        tv_price = convertView.findViewById(R.id.tv_price);
        tv_actual_price1 = convertView.findViewById(R.id.tv_actual_price1);
        tv_actual_price2 = convertView.findViewById(R.id.tv_actual_price2);
    }
}