64 lines
3.1 KiB
Java
64 lines
3.1 KiB
Java
package com.ubt.jimu.pack.view;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.RelativeLayout;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
import butterknife.Unbinder;
|
|
import butterknife.internal.DebouncingOnClickListener;
|
|
import butterknife.internal.Utils;
|
|
import com.ubt.jimu.R;
|
|
import com.ubt.jimu.widgets.LoadStateView;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class RobotSelectActivity_ViewBinding implements Unbinder {
|
|
private RobotSelectActivity b;
|
|
private View c;
|
|
private View d;
|
|
|
|
public RobotSelectActivity_ViewBinding(final RobotSelectActivity robotSelectActivity, View view) {
|
|
this.b = robotSelectActivity;
|
|
robotSelectActivity.im_robot_pack = (ImageView) Utils.b(view, R.id.im_robot_pack, "field 'im_robot_pack'", ImageView.class);
|
|
robotSelectActivity.rv_robot_list = (RecyclerView) Utils.b(view, R.id.rv_robot_list, "field 'rv_robot_list'", RecyclerView.class);
|
|
robotSelectActivity.rl_pack_click = (RelativeLayout) Utils.b(view, R.id.rl_pack_click, "field 'rl_pack_click'", RelativeLayout.class);
|
|
robotSelectActivity.load_state = (LoadStateView) Utils.b(view, R.id.load_state, "field 'load_state'", LoadStateView.class);
|
|
robotSelectActivity.rl_play_package_video = (RelativeLayout) Utils.b(view, R.id.rl_play_package_video, "field 'rl_play_package_video'", RelativeLayout.class);
|
|
View a = Utils.a(view, R.id.img_play_package_video, "field 'imgPlayPackageVideo' and method 'onPlayPackageVideo'");
|
|
robotSelectActivity.imgPlayPackageVideo = (ImageView) Utils.a(a, R.id.img_play_package_video, "field 'imgPlayPackageVideo'", ImageView.class);
|
|
this.c = a;
|
|
a.setOnClickListener(new DebouncingOnClickListener(this) { // from class: com.ubt.jimu.pack.view.RobotSelectActivity_ViewBinding.1
|
|
@Override // butterknife.internal.DebouncingOnClickListener
|
|
public void doClick(View view2) {
|
|
robotSelectActivity.onPlayPackageVideo(view2);
|
|
}
|
|
});
|
|
View a2 = Utils.a(view, R.id.img_play, "method 'onPlayPackageVideo'");
|
|
this.d = a2;
|
|
a2.setOnClickListener(new DebouncingOnClickListener(this) { // from class: com.ubt.jimu.pack.view.RobotSelectActivity_ViewBinding.2
|
|
@Override // butterknife.internal.DebouncingOnClickListener
|
|
public void doClick(View view2) {
|
|
robotSelectActivity.onPlayPackageVideo(view2);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void unbind() {
|
|
RobotSelectActivity robotSelectActivity = this.b;
|
|
if (robotSelectActivity == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
robotSelectActivity.im_robot_pack = null;
|
|
robotSelectActivity.rv_robot_list = null;
|
|
robotSelectActivity.rl_pack_click = null;
|
|
robotSelectActivity.load_state = null;
|
|
robotSelectActivity.rl_play_package_video = null;
|
|
robotSelectActivity.imgPlayPackageVideo = null;
|
|
this.c.setOnClickListener(null);
|
|
this.c = null;
|
|
this.d.setOnClickListener(null);
|
|
this.d = null;
|
|
}
|
|
}
|