We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议在hidePanelAndKeyboard中除了设置panelLayout.setVisibility(View.GONE);以外增加一行代码 panelLayout.requestLayout重绘一下。
fitsystem=true, TranslucentStatus=false时有一个华为手机在这种情况下会有问题: 在activity(A)点击加号显示panel,然后再点击加号显示软键盘,到这里都正常,这时候点击界面上一个按钮跳转到其他activity(B),onpause的时候我调用了hidePanelAndKeyboard,然后从B返回到A,我期待的效果是软键盘收起,panel隐藏,但是实际上是这样的,listview没有重绘
我在onpause的时候调用一下panelLayout.requestLayout重绘一下就正常了
The text was updated successfully, but these errors were encountered:
No branches or pull requests
建议在hidePanelAndKeyboard中除了设置panelLayout.setVisibility(View.GONE);以外增加一行代码
panelLayout.requestLayout重绘一下。
fitsystem=true, TranslucentStatus=false时有一个华为手机在这种情况下会有问题:
在activity(A)点击加号显示panel,然后再点击加号显示软键盘,到这里都正常,这时候点击界面上一个按钮跳转到其他activity(B),onpause的时候我调用了hidePanelAndKeyboard,然后从B返回到A,我期待的效果是软键盘收起,panel隐藏,但是实际上是这样的,listview没有重绘
我在onpause的时候调用一下panelLayout.requestLayout重绘一下就正常了
The text was updated successfully, but these errors were encountered: