Christian Caballero

Results 26 comments of Christian Caballero

@stripathi669 I now this is reaaaally old, but well.. for future readers. I was diving on the code and the fast documentation is on this code: ``` override fun onTouchEvent(event:...

@sephiroth74 If it's ok, I could add this to the wiki section

@whoyawn Could you please paste the link to the doc, because I cannot find it on the wiki space https://github.com/sephiroth74/android-target-tooltip/wiki Thanks!

Hello @whoyawn. Ok, Thanks! But don't you think we should update too the main wiki page?, but the users will not found this wiki documentation you created. I have add...

The problem is, i could not define that behaviour, because CONSUME is true/false in both cases, but not on one or another Consume true/false inside and outside always, not true...

Yes! :) That would be perfect. If you need some help i could create a PR with that. But i have not too much time so will be launched in...

To just be sure, on that code ClosePolicy.Builder() .inside(touch, consume) .outside(touch, consume) .build() `consume` should be 2 differents variables, one for inside, one for outside. I think that what you...

I miss the part where if not set the flag `WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE` the view will consume the touch. I see you set a FrameLayout and there you have a touchListener. Could...

Sorry for late response, but I was busy on other stuff. I have tested that version I set `val closePolicy = ClosePolicy.Builder().inside(true, true).outside(false, true).build()` But what happens is as you...

I the workaroud of Kassim it works, seems that you set the tooltip too early on the lifecycle, when no all the views was loaded. Be sure to use OnViewCreated...