37 lines
1.4 KiB
Java
37 lines
1.4 KiB
Java
package com.ubt.jimu.community.view;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.ProgressBar;
|
|
import android.widget.TextView;
|
|
import android.widget.VideoView;
|
|
import butterknife.Unbinder;
|
|
import butterknife.internal.Utils;
|
|
import com.ubt.jimu.R;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class VideoActivity_ViewBinding implements Unbinder {
|
|
private VideoActivity b;
|
|
|
|
public VideoActivity_ViewBinding(VideoActivity videoActivity, View view) {
|
|
this.b = videoActivity;
|
|
videoActivity.vvPreview = (VideoView) Utils.b(view, R.id.vv_preview, "field 'vvPreview'", VideoView.class);
|
|
videoActivity.imgPlay = (ImageView) Utils.b(view, R.id.img_play, "field 'imgPlay'", ImageView.class);
|
|
videoActivity.pbPlay = (ProgressBar) Utils.b(view, R.id.pb_play, "field 'pbPlay'", ProgressBar.class);
|
|
videoActivity.tvVideoDesc = (TextView) Utils.b(view, R.id.tv_video_desc, "field 'tvVideoDesc'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void unbind() {
|
|
VideoActivity videoActivity = this.b;
|
|
if (videoActivity == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
videoActivity.vvPreview = null;
|
|
videoActivity.imgPlay = null;
|
|
videoActivity.pbPlay = null;
|
|
videoActivity.tvVideoDesc = null;
|
|
}
|
|
}
|