登录输入框上移

2019-03-14  本文已影响0人  ddsfec
直接注册就可以了

private boolean isKeyboardShown(View rootView) {

final int softKeyboardHeight =100;

Rect r =new Rect();

rootView.getWindowVisibleDisplayFrame(r);

DisplayMetrics dm = rootView.getResources().getDisplayMetrics();

int heightDiff = rootView.getBottom() - r.bottom;

return heightDiff > softKeyboardHeight * dm.density;

}

private void registerKeyboardListener() {

final View rootView = getWindow().getDecorView().findViewById(android.R.id.content);

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

@Override

        public void onGlobalLayout() {

if (isKeyboardShown(rootView)) {

bean.setInput(View.VISIBLE);

}else {

bean.setInput(View.GONE);

}

}

});

}

上一篇 下一篇

猜你喜欢

热点阅读