18 lines
		
	
	
		
			442 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			442 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 onFindViewById(int i);
 | |
| 
 | |
|     public abstract boolean onHasView();
 | |
| 
 | |
|     @Deprecated
 | |
|     public Fragment instantiate(Context context, String str, Bundle bundle) {
 | |
|         return Fragment.instantiate(context, str, bundle);
 | |
|     }
 | |
| }
 |