admin
2021-04-07 edeef504e654415c25d3816a4609f43edc79fbb3
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
41
42
43
44
package com.weikou.beibeivideo.entity.video.holder;
 
import androidx.recyclerview.widget.RecyclerView;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
 
import com.lcjian.library.widget.RatioLayout;
import com.weikou.beibeivideo.R;
 
public class VideoHolder extends RecyclerView.ViewHolder {
 
    public RatioLayout rl_ratio;
    public LinearLayout ll_video_show;
    public ImageView iv_movie_cover;
    public ImageView iv_spread;
    public ImageView iv_vip;
    public TextView tv_score;
    public ImageView iv_ad_logo;
    public ImageView iv_high;
    public TextView tv_tag;
    public TextView tv_movie_title;
    public TextView tv_movie_sub_title;
    public LinearLayout ll_tag_container;
    public View view;
 
    public VideoHolder(View view) {
        super(view);
        this.view = view;
        rl_ratio = view.findViewById(R.id.rl_ratio);
        ll_video_show = view.findViewById(R.id.ll_video_show);
        iv_movie_cover = view.findViewById(R.id.iv_movie_cover);
        iv_spread = view.findViewById(R.id.iv_spread);
        tv_score = view.findViewById(R.id.tv_score);
        tv_tag = view.findViewById(R.id.tv_tag);
        iv_high = view.findViewById(R.id.iv_high);
        iv_ad_logo = view.findViewById(R.id.iv_ad_logo);
        tv_movie_title = view.findViewById(R.id.tv_movie_title);
        tv_movie_sub_title = view.findViewById(R.id.tv_subtitle);
        iv_vip = view.findViewById(R.id.iv_vip);
        ll_tag_container = view.findViewById(R.id.ll_tag_container);
    }
}