码迷,mamicode.com
首页 > 移动开发 > 详细

Android 软键盘弹出与关闭监听

时间:2014-08-25 21:04:14      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:android   os   cti   new   on   ad   c   server   view   

private void listenerSoftInput() {
  final View activityRootView = findViewById(R.id.activityRoot);
  activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(
        new OnGlobalLayoutListener() {
        @Override
          public void onGlobalLayout() {
            int heightDiff = activityRootView.getRootView()
                      .getHeight() - activityRootView.getHeight();
            if (heightDiff > 100) { // 如果高度差超过100像素,就很有可能是有软键盘...
            scrollToBottom();
        } else {
        }
}
});
}

//scrollview滑到底部

protected void scrollToBottom() {
handler.postDelayed(new Runnable() {
@Override
public void run() {
scrollview.fullScroll(View.FOCUS_DOWN);
}
}, 100);
}

Android 软键盘弹出与关闭监听

标签:android   os   cti   new   on   ad   c   server   view   

原文地址:http://www.cnblogs.com/lianghui66/p/3935765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!