admin
2021-06-07 01e23be6118d68d38a71d186296d440eadcaa197
app/src/main/java/com/tejia/lijin/app/util/ui/GoodsRightViewHolder.java
@@ -1,6 +1,7 @@
package com.tejia.lijin.app.util.ui;
import androidx.recyclerview.widget.RecyclerView;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
@@ -8,38 +9,32 @@
import com.tejia.lijin.app.R;
public class GoodsRightViewHolder extends RecyclerView.ViewHolder {
    public LinearLayout ll_discount;
    public TextView tv_name;
    public TextView tv_shop_name;
    public TextView tv_sale_num;
    public LinearLayout ll_labels;
    public LinearLayout ll_coupon_bg1;
    public TextView tv_name1;
    public TextView tv_price1;
    public TextView tv_coupon_price1;
    public TextView tv_shop_name1;
    public LinearLayout ll_shop1;
    public TextView tv_normal_price1;
    public TextView tv_favourable1;//红包,券后价
    public TextView tv_sale_num1;
    public TextView tv_sale_num2;
    public TextView tv_discount;
    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);
        ll_coupon_bg1 = convertView.findViewById(R.id.ll_coupon_bg1);
        tv_normal_price1 = convertView
                .findViewById(R.id.tv_normal_price1);
        tv_shop_name1 = convertView
                .findViewById(R.id.tv_shop_name1);
        tv_name1 = convertView
                .findViewById(R.id.tv_movie_title1);
        tv_price1 = convertView.findViewById(R.id.tv_price1);
        tv_coupon_price1 = convertView.findViewById(R.id.tv_coupon_price1);
        tv_favourable1 = convertView.findViewById(R.id.tv_favourable1);
        tv_sale_num1 = convertView.findViewById(R.id.tv_sale_num1);
        tv_sale_num2 = convertView.findViewById(R.id.tv_sale_num2);
        ll_shop1 = convertView.findViewById(R.id.ll_shop1);
        ll_discount = convertView.findViewById(R.id.ll_discount_new);
        tv_discount = convertView.findViewById(R.id.tv_discount_new);
        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);
    }
}