| 
				
			 | 
			
			
				@@ -4,6 +4,7 @@ import android.app.Dialog; 
			 | 
		
	
		
			
			| 
				4
			 | 
			
				4
			 | 
			
			
				 import android.content.DialogInterface; 
			 | 
		
	
		
			
			| 
				5
			 | 
			
				5
			 | 
			
			
				 import android.support.v7.app.AppCompatActivity; 
			 | 
		
	
		
			
			| 
				6
			 | 
			
				6
			 | 
			
			
				 import android.view.Window; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				7
			 | 
			
			
				+import android.view.WindowManager; 
			 | 
		
	
		
			
			| 
				7
			 | 
			
				8
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				8
			 | 
			
				9
			 | 
			
			
				 import com.reactnativenavigation.R; 
			 | 
		
	
		
			
			| 
				9
			 | 
			
				10
			 | 
			
			
				 import com.reactnativenavigation.layouts.Layout; 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -70,6 +71,7 @@ public class Modal extends Dialog implements DialogInterface.OnDismissListener, 
			 | 
		
	
		
			
			| 
				70
			 | 
			
				71
			 | 
			
			
				         setOnDismissListener(this); 
			 | 
		
	
		
			
			| 
				71
			 | 
			
				72
			 | 
			
			
				         requestWindowFeature(Window.FEATURE_NO_TITLE); 
			 | 
		
	
		
			
			| 
				72
			 | 
			
				73
			 | 
			
			
				         layout = new SingleScreenLayout(getActivity(), screenParams, this); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				74
			 | 
			
			
				+        getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); 
			 | 
		
	
		
			
			| 
				73
			 | 
			
				75
			 | 
			
			
				         setContentView(layout.asView()); 
			 | 
		
	
		
			
			| 
				74
			 | 
			
				76
			 | 
			
			
				     } 
			 | 
		
	
		
			
			| 
				75
			 | 
			
				77
			 | 
			
			
				  
			 |