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
将floatview 运用在来电监听上使用CallShowReceiver.java , 第一次来电显示正常,第二次,显示3个悬浮窗,第3次,会显示5个悬浮窗,以此类推1,3,5,7,9........... 建议将CallShowReceiver.java中设为 private static FloatView floatView; 在部分手机上,如小米,第二次拨打会报错误 :IllegalStateException: view has already been added to the window manager 建议在报错地点 floatView.addToWindow()修改成 if (floatView.getParent() == null) floatView.addToWindow();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
将floatview 运用在来电监听上使用CallShowReceiver.java , 第一次来电显示正常,第二次,显示3个悬浮窗,第3次,会显示5个悬浮窗,以此类推1,3,5,7,9........... 建议将CallShowReceiver.java中设为 private static FloatView floatView;
在部分手机上,如小米,第二次拨打会报错误 :IllegalStateException: view has already been added to the window manager 建议在报错地点 floatView.addToWindow()修改成 if (floatView.getParent() == null)
floatView.addToWindow();
The text was updated successfully, but these errors were encountered: