26 lines
670 B
Java
26 lines
670 B
Java
package com.ubt.jimu.widgets;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class BottomShadowXLayout extends LinearLayout {
|
|
private View.OnClickListener a;
|
|
LinearLayout bottomShadowLayout;
|
|
ImageView imageView;
|
|
TextView textView;
|
|
|
|
public void onClick(View view) {
|
|
View.OnClickListener onClickListener = this.a;
|
|
if (onClickListener != null) {
|
|
onClickListener.onClick(view);
|
|
}
|
|
}
|
|
|
|
public void setListener(View.OnClickListener onClickListener) {
|
|
this.a = onClickListener;
|
|
}
|
|
}
|