53 lines
2.0 KiB
Java
53 lines
2.0 KiB
Java
|
package com.scb.phone.view.custom.hml;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class CustomCollapsibleText_ViewBinding implements Unbinder {
|
||
|
private CustomCollapsibleText c;
|
||
|
private View e;
|
||
|
|
||
|
public CustomCollapsibleText_ViewBinding(CustomCollapsibleText customCollapsibleText, View view) {
|
||
|
this.c = customCollapsibleText;
|
||
|
customCollapsibleText.contentText = (TextView) pyT.e(view, R.id.tv_content, "field 'contentText'", TextView.class);
|
||
|
customCollapsibleText.titleText = (TextView) pyT.e(view, R.id.tv_title, "field 'titleText'", TextView.class);
|
||
|
customCollapsibleText.arrowImage = (ImageView) pyT.e(view, R.id.iv_arrow, "field 'arrowImage'", ImageView.class);
|
||
|
View a = pyT.a(view, R.id.cl_expand_button, "method 'onExpandClicked'");
|
||
|
this.e = a;
|
||
|
a.setOnClickListener(new gnL(this, customCollapsibleText) { // from class: com.scb.phone.view.custom.hml.CustomCollapsibleText_ViewBinding.4
|
||
|
private CustomCollapsibleText_ViewBinding b;
|
||
|
private CustomCollapsibleText d;
|
||
|
|
||
|
{
|
||
|
this.b = this;
|
||
|
this.d = customCollapsibleText;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.d.onExpandClicked();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomCollapsibleText customCollapsibleText = this.c;
|
||
|
if (customCollapsibleText == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.c = null;
|
||
|
customCollapsibleText.contentText = null;
|
||
|
customCollapsibleText.titleText = null;
|
||
|
customCollapsibleText.arrowImage = null;
|
||
|
this.e.setOnClickListener(null);
|
||
|
this.e = null;
|
||
|
}
|
||
|
}
|