-
-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
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
Whole balloon is focused when displayed initially #258
Comments
Hi @nvasilev0101, .setDismissWhenTouchOutside(false)
.setFocusable(false) |
Hi @skydoves, |
Hey @nvasilev0101, sorry for the late response. |
Hello. I've updated to The balloon is focused when in the dpad mode. |
@magneticchen Did you manage to solve this issue? I seem to be having the same problem where my balloon has that shadow like in your image? |
Nope. It is still there. |
Does it show always like that for you or sometimes it's ok? |
It only happens when dpad mode is on. (Not in touch mode) |
Hey guys, I'm wondering if you face still the same issue if you request focus to your anchor view after showing the balloon like the below: val balloon = Balloon.Builder(context)
.setOnBaclloonInitializedListener {
anchor.requestFocus()
}
...
balloon.showAlignBotton(anchor) Thanks! |
Yes. The issue is still happening. :/ |
Describe the Bug:
I have implemented your library as a tool for showing mentions. The problem is, that after I show the pop-up, it gains focus I assume, which disappears after you touch the pop-up.
This is how I'm using the library:
Also, I tried using
.setOverlayShape(BalloonOverlayCircle(radius = 0f))
, but it didn't change anything.Expected Behavior:
I would expect to have the pop-up show without that tint or focus or whatever it is. Any idea what might be causing the tint to show like that?
The text was updated successfully, but these errors were encountered: