We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
怎么设置tips显示的时候,主界面可以继续滑动 现在是必须关闭后,才能滑动,因为设置背景不变暗,体验不太好
The text was updated successfully, but these errors were encountered:
我设置了 tip.isFocusable = false 滑动直接关闭tips,可以到达我的效果 如果要处理tip点击的话是不是要设置setTouchInterceptor了? 没有测试 哈哈 tip.setTouchInterceptor(object : View.OnTouchListener { override fun onTouch(view: View, motionEvent: MotionEvent): Boolean { if (motionEvent.y >= 0 && motionEvent.y <= view.measuredHeight) {//PopupWindow内部的事件 return false } else { tip.dismissTip() } return false }
})
Sorry, something went wrong.
No branches or pull requests
怎么设置tips显示的时候,主界面可以继续滑动
现在是必须关闭后,才能滑动,因为设置背景不变暗,体验不太好
The text was updated successfully, but these errors were encountered: