mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
443 B
Java
18 lines
443 B
Java
|
package androidx.fragment.app;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.os.Bundle;
|
||
|
import android.view.View;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public abstract class FragmentContainer {
|
||
|
public abstract View onFindViewById(int i);
|
||
|
|
||
|
public abstract boolean onHasView();
|
||
|
|
||
|
@Deprecated
|
||
|
public Fragment instantiate(Context context, String str, Bundle bundle) {
|
||
|
return Fragment.instantiate(context, str, bundle);
|
||
|
}
|
||
|
}
|