Android - Adjust screen when keyboard pops up?
I want to be able to adjust my UI screen on Android when the soft keyboard pops up.
So at the minute I have something similiar to the first picture below where I have and Edi开发者_JS百科tText at the bottom of the screen and when a user taps the EditText I want the same as what happens in the second picture.
That is that the EditText gets moved up and appears to "sit" on top of the soft keyboard, when the soft keyboard dissapears it should then return to its prior state.
Can anyone let me know the best way to approach and implement this?
alt text http://img40.imageshack.us/img40/2300/keyboarddown.png
alt text http://img46.imageshack.us/img46/9339/keyboardup.png
You need to add android:windowSoftInputMode="adjustResize"
to your tag in the AndroidManifest.xml file.
take a look at android:windowSoftInputMode
I solved this problem according rascalking's reply.
Dialog dialog = new Dialog(context);
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
dialog.setContentView(R.layout.pop_window_service);
WebView webview = (WebView) dialog.findViewById(R.id.pop_webview);
webview.loadUrl(url);
believe me it works.
精彩评论