android避免弹出软键盘遮盖listview

做开发的时候,我们常常把listview放中间,然后底部放置一个edittext控件,这样导致editext控件获得焦点的时候,输入法弹出,Edittext控件上移,挡住了listview的部分数据,这样不太美观。所以,我们需要让listview也跟着上移,所以需要:

设置listview属性时候加上这句就ok了android:transcriptMode="normal"


另外的一种做法是:

获得布局view,

rootView.getViewTreeObserver().addOnGlobalLayoutListener(
				new ViewTreeObserver.OnGlobalLayoutListener() {

					@Override
					public void onGlobalLayout() {
						Rect r = new Rect();
						rootView.getWindowVisibleDisplayFrame(r);
						int screenHeight = rootView.getRootView().getHeight();
						int heightDifference = screenHeight
								- (r.bottom - r.top);

						if (heightDifference < 100) {
							// 隐藏键盘, 没办法高度低于100的我就把它当成键盘隐藏了
						
							keyboardHeight = heightDifference ;
						} else {
							// 显示键盘,并在这里重新让listview滚动到底部
							
						}
					}
				});



你可能感兴趣的:(android避免弹出软键盘遮盖listview)