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
The text was updated successfully, but these errors were encountered:
偶尔发生,有时候又是正常的
Sorry, something went wrong.
加了样式控制啦
可以给那个悬浮窗加个可拖动的监听吗,因为有些水滴屏或者刘海屏,横屏状态下会挡住那个好友聊天界面,代码类似这样 floatyWindow.move.setOnTouchListener(function (view, event) { switch (event.getAction()) { case event.ACTION_DOWN: X = event.getRawX(); Y = event.getRawY(); return true; case event.ACTION_MOVE: x = event.getRawX() - X; y = event.getRawY() - Y; floatyWindow.setPosition(wx + x, wy + y); return true; case event.ACTION_UP: wx += x; wy += y; return true; } });
No branches or pull requests
The text was updated successfully, but these errors were encountered: