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