Android - Adjust screen when keyboard pops up?

2020-02-11 03:34发布

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 EditText 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

3条回答
老娘就宠你
2楼-- · 2020-02-11 04:14

You need to add android:windowSoftInputMode="adjustResize" to your tag in the AndroidManifest.xml file.

查看更多
叼着烟拽天下
3楼-- · 2020-02-11 04:26
Melony?
4楼-- · 2020-02-11 04:38

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.

查看更多
登录 后发表回答