0
点赞
收藏
分享

微信扫一扫

android dialog弹框 EditText 软键盘不弹出问题

纽二 2022-06-20 阅读 77

方案一:加show监听,然后强制弹出即可 

AlertDialog dialog = new AlertDialog.Builder(context)
.setView(customView)
.setCancelable(isCancelable).create();
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialogInterface) {
KeyboardUtils.showSoftInput(context);
}
});

方案二:设置点击事件,然后强制弹出


方案三:延时强制弹框

 


举报

相关推荐

0 条评论