17 lines
395 B
Java
17 lines
395 B
Java
package androidx.fragment.app;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.view.View;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class FragmentContainer {
|
|
public abstract View a(int i);
|
|
|
|
public Fragment a(Context context, String str, Bundle bundle) {
|
|
return Fragment.instantiate(context, str, bundle);
|
|
}
|
|
|
|
public abstract boolean a();
|
|
}
|