jimu-decompiled/sources/androidx/recyclerview/widget/LayoutState.java
2025-05-13 19:24:51 +02:00

36 lines
812 B
Java

package androidx.recyclerview.widget;
import android.view.View;
import androidx.recyclerview.widget.RecyclerView;
/* loaded from: classes.dex */
class LayoutState {
int b;
int c;
int d;
int e;
boolean h;
boolean i;
boolean a = true;
int f = 0;
int g = 0;
LayoutState() {
}
boolean a(RecyclerView.State state) {
int i = this.c;
return i >= 0 && i < state.a();
}
public String toString() {
return "LayoutState{mAvailable=" + this.b + ", mCurrentPosition=" + this.c + ", mItemDirection=" + this.d + ", mLayoutDirection=" + this.e + ", mStartLine=" + this.f + ", mEndLine=" + this.g + '}';
}
View a(RecyclerView.Recycler recycler) {
View d = recycler.d(this.c);
this.c += this.d;
return d;
}
}