Rabbit-R1/switch port/java/sources/androidx/fragment/app/FragmentLayoutInflaterFactory.java
2024-05-21 17:08:36 -04:00

116 lines
6.4 KiB
Java

package androidx.fragment.app;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.fragment.R;
import androidx.fragment.app.strictmode.FragmentStrictMode;
import io.sentry.protocol.Request;
/* JADX INFO: Access modifiers changed from: package-private */
/* loaded from: classes2.dex */
public class FragmentLayoutInflaterFactory implements LayoutInflater.Factory2 {
private static final String TAG = "FragmentManager";
final FragmentManager mFragmentManager;
/* JADX INFO: Access modifiers changed from: package-private */
public FragmentLayoutInflaterFactory(FragmentManager fragmentManager) {
this.mFragmentManager = fragmentManager;
}
@Override // android.view.LayoutInflater.Factory
public View onCreateView(String str, Context context, AttributeSet attributeSet) {
return onCreateView(null, str, context, attributeSet);
}
@Override // android.view.LayoutInflater.Factory2
public View onCreateView(View view, String str, Context context, AttributeSet attributeSet) {
final FragmentStateManager createOrGetFragmentStateManager;
if (FragmentContainerView.class.getName().equals(str)) {
return new FragmentContainerView(context, attributeSet, this.mFragmentManager);
}
if (!Request.JsonKeys.FRAGMENT.equals(str)) {
return null;
}
String attributeValue = attributeSet.getAttributeValue(null, "class");
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(attributeSet, R.styleable.Fragment);
if (attributeValue == null) {
attributeValue = obtainStyledAttributes.getString(R.styleable.Fragment_android_name);
}
int resourceId = obtainStyledAttributes.getResourceId(R.styleable.Fragment_android_id, -1);
String string = obtainStyledAttributes.getString(R.styleable.Fragment_android_tag);
obtainStyledAttributes.recycle();
if (attributeValue == null || !FragmentFactory.isFragmentClass(context.getClassLoader(), attributeValue)) {
return null;
}
int id = view != null ? view.getId() : 0;
if (id == -1 && resourceId == -1 && string == null) {
throw new IllegalArgumentException(attributeSet.getPositionDescription() + ": Must specify unique android:id, android:tag, or have a parent with an id for " + attributeValue);
}
Fragment findFragmentById = resourceId != -1 ? this.mFragmentManager.findFragmentById(resourceId) : null;
if (findFragmentById == null && string != null) {
findFragmentById = this.mFragmentManager.findFragmentByTag(string);
}
if (findFragmentById == null && id != -1) {
findFragmentById = this.mFragmentManager.findFragmentById(id);
}
if (findFragmentById == null) {
findFragmentById = this.mFragmentManager.getFragmentFactory().instantiate(context.getClassLoader(), attributeValue);
findFragmentById.mFromLayout = true;
findFragmentById.mFragmentId = resourceId != 0 ? resourceId : id;
findFragmentById.mContainerId = id;
findFragmentById.mTag = string;
findFragmentById.mInLayout = true;
findFragmentById.mFragmentManager = this.mFragmentManager;
findFragmentById.mHost = this.mFragmentManager.getHost();
findFragmentById.onInflate(this.mFragmentManager.getHost().getContext(), attributeSet, findFragmentById.mSavedFragmentState);
createOrGetFragmentStateManager = this.mFragmentManager.addFragment(findFragmentById);
if (FragmentManager.isLoggingEnabled(2)) {
Log.v("FragmentManager", "Fragment " + findFragmentById + " has been inflated via the <fragment> tag: id=0x" + Integer.toHexString(resourceId));
}
} else {
if (findFragmentById.mInLayout) {
throw new IllegalArgumentException(attributeSet.getPositionDescription() + ": Duplicate id 0x" + Integer.toHexString(resourceId) + ", tag " + string + ", or parent id 0x" + Integer.toHexString(id) + " with another fragment for " + attributeValue);
}
findFragmentById.mInLayout = true;
findFragmentById.mFragmentManager = this.mFragmentManager;
findFragmentById.mHost = this.mFragmentManager.getHost();
findFragmentById.onInflate(this.mFragmentManager.getHost().getContext(), attributeSet, findFragmentById.mSavedFragmentState);
createOrGetFragmentStateManager = this.mFragmentManager.createOrGetFragmentStateManager(findFragmentById);
if (FragmentManager.isLoggingEnabled(2)) {
Log.v("FragmentManager", "Retained Fragment " + findFragmentById + " has been re-attached via the <fragment> tag: id=0x" + Integer.toHexString(resourceId));
}
}
ViewGroup viewGroup = (ViewGroup) view;
FragmentStrictMode.onFragmentTagUsage(findFragmentById, viewGroup);
findFragmentById.mContainer = viewGroup;
createOrGetFragmentStateManager.moveToExpectedState();
createOrGetFragmentStateManager.ensureInflatedView();
if (findFragmentById.mView == null) {
throw new IllegalStateException("Fragment " + attributeValue + " did not create a view.");
}
if (resourceId != 0) {
findFragmentById.mView.setId(resourceId);
}
if (findFragmentById.mView.getTag() == null) {
findFragmentById.mView.setTag(string);
}
findFragmentById.mView.addOnAttachStateChangeListener(new View.OnAttachStateChangeListener() { // from class: androidx.fragment.app.FragmentLayoutInflaterFactory.1
@Override // android.view.View.OnAttachStateChangeListener
public void onViewDetachedFromWindow(View view2) {
}
@Override // android.view.View.OnAttachStateChangeListener
public void onViewAttachedToWindow(View view2) {
Fragment fragment = createOrGetFragmentStateManager.getFragment();
createOrGetFragmentStateManager.moveToExpectedState();
SpecialEffectsController.getOrCreateController((ViewGroup) fragment.mView.getParent(), FragmentLayoutInflaterFactory.this.mFragmentManager).forceCompleteAllOperations();
}
});
return findFragmentById.mView;
}
}