package p037.p065.p078;

import android.view.View;
import android.view.ViewGroup;
import java.util.Iterator;
import p402.p411.p413.p414.InterfaceC6651;

/* JADX INFO: renamed from: މ.ރ.ފ.ސ, reason: contains not printable characters */
/* JADX INFO: loaded from: classes.dex */
public final class C1930 implements Iterator<View>, InterfaceC6651 {

    /* JADX INFO: renamed from: ރ, reason: contains not printable characters */
    public int f6380;

    /* JADX INFO: renamed from: ބ, reason: contains not printable characters */
    public final /* synthetic */ ViewGroup f6381;

    public C1930(ViewGroup viewGroup) {
        this.f6381 = viewGroup;
    }

    @Override // java.util.Iterator
    public boolean hasNext() {
        return this.f6380 < this.f6381.getChildCount();
    }

    @Override // java.util.Iterator
    public View next() {
        ViewGroup viewGroup = this.f6381;
        int i = this.f6380;
        this.f6380 = i + 1;
        View childAt = viewGroup.getChildAt(i);
        if (childAt != null) {
            return childAt;
        }
        throw new IndexOutOfBoundsException();
    }

    @Override // java.util.Iterator
    public void remove() {
        ViewGroup viewGroup = this.f6381;
        int i = this.f6380 - 1;
        this.f6380 = i;
        viewGroup.removeViewAt(i);
    }
}
