27 lines
943 B
Java
27 lines
943 B
Java
package com.ubt.jimu.utils;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class WrapContentLinearLayoutManager extends LinearLayoutManager {
|
|
public WrapContentLinearLayoutManager(Context context, int i, boolean z) {
|
|
super(context, i, z);
|
|
}
|
|
|
|
@Override // androidx.recyclerview.widget.LinearLayoutManager, androidx.recyclerview.widget.RecyclerView.LayoutManager
|
|
public void e(RecyclerView.Recycler recycler, RecyclerView.State state) {
|
|
try {
|
|
super.e(recycler, state);
|
|
} catch (Exception e) {
|
|
LogUtils.c("不知名异常" + e.getMessage());
|
|
}
|
|
}
|
|
|
|
public WrapContentLinearLayoutManager(Context context, AttributeSet attributeSet, int i, int i2) {
|
|
super(context, attributeSet, i, i2);
|
|
}
|
|
}
|