You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//androidx.fragment.app.FragmentContainerView
@Override
public void addView(@NonNull View child, int index, @Nullable ViewGroup.LayoutParams params) {
if (FragmentManager.getViewFragment(child) == null) {
throw new IllegalStateException("Views added to a FragmentContainerView must be"
+ " associated with a Fragment. View " + child + " is not associated with a"
+ " Fragment.");
}
super.addView(child, index, params);
}
fragment的根布局非FrameLayout和RelativeLayout
The text was updated successfully, but these errors were encountered: