Android 仿今日头条评论时键盘自动弹出的效果:当点击评论时,弹出对话框,同时弹出软键盘,当点击返回键时,将对话框关闭,不只是关闭软键盘。
效果图:
对这个对话框设置一个style效果:
- @color/dialog_bg
- @null
- true
- true
- stateAlwaysVisible
并设置Dialog的监听返回键事件,不然默认是隐藏软键盘:
dialog.setonKeyListener(new DialogInterface.onKeyListener() {
@Override
public boolean onKey(DialogInterface dialogInterface, int keyCode, KeyEvent keyEvent) {
if (keyCode == KeyEvent.KEYCODE_BACK && keyEvent.getRepeatCount() == 0)
dialog.cancel();
return false;
}
});
做完以上两步,就可以实现与今日头条评论一样的效果了。



