fix: 修复评论页面发表评论内容跳转登录页面返回时软键盘消失的问题

This commit is contained in:
chenjuntao
2022-10-27 14:32:48 +08:00
parent a169ce1989
commit 03095b682b

View File

@ -313,9 +313,10 @@ open class NewCommentFragment : ListFragment<CommentEntity, NewCommentViewModel>
EventBus.getDefault().post(EBReuse(COMMENT_RESUME))
if (::commentEt.isInitialized && commentEt.text.isNotEmpty()) {
// 若不延迟,可能回来的时候不能获取焦点导致弹不起来
mBaseHandler.postDelayed({
Util_System_Keyboard.showSoftKeyboard(context, commentEt)
}, 100)
}, 200)
}
}