Notice (2018-05-24): bugzilla.xamarin.com is now in read-only mode.
Please join us on Visual Studio Developer Community and in the Xamarin and Mono organizations on GitHub to continue tracking issues. Bugzilla will remain available for reference in read-only mode. We will continue to work on open Bugzilla bugs, copy them to the new locations as needed for follow-up, and add the new items under Related Links.
Our sincere thanks to everyone who has contributed on this bug tracker over the years. Thanks also for your understanding as we make these adjustments and improvements for the future.
Please create a new report on Developer Community or GitHub with your current version information, steps to reproduce, and relevant error messages or log files if you are hitting an issue that looks similar to this resolved bug and you do not yet see a matching new report.
Here is an actual question and bug: http://stackoverflow.com/questions/41940612/pan-gesture-twinkles-in-xamarin-on-android-project?noredirect=1#comment71141603_41940612
Soon my question from StackOverflow can be deleted so I will explain this bug here. I implemented range slider from here: https://github.com/Manne990/RangeSliderView and it was working. But when I attached this to my actual project then it has twinkle on Android. I started to dig into this problem and found that doesn't work because of Xamarin.Forms NuGet package version. I am clearly sure that it works fine on 2.3.1.114 and 2.3.2.127 but after 2.3.2.127 it's not. On iOS it works always. To reproduce this you can just download that sample from GitHub and install another version of the NuGet package.
Bump!
Here is a video that demonstrates behavior of bug: https://drive.google.com/file/d/0BwR08ZGzrsJCTW5BSmJaMldDZkU/view And sample project: https://drive.google.com/open?id=0BwR08ZGzrsJCMU9vczU5ZFJMNlU
I am able to reproduce the issue described with the project linked in comment 3. I can confirm the issue does _not_ occur with 2.3.2.127. There were some fixes[1][2] to the PanGestureRecognizer in Android after 2.3.2.127 that might be affecting this. The Forms built in Slider works as expected so it's unclear whether the fixes mentioned are directly causing this new issue or if the custom slider implementation needs to account for the new fixes. I am confirming this report in the meantime so the team can investigate further. ### Regression Test Forms 2.3.4-pre4 BAD Forms 2.3.3.180 BAD Forms 2.3.2.127 GOOD [1] https://github.com/xamarin/Xamarin.Forms/pull/313 [2] https://github.com/xamarin/Xamarin.Forms/pull/389
Glad to hear it, thank you. Waiting for future investigations.
Hello, I noticed this issue as well. I Think it started after the fix of "Complete event not firing after slow panning". I also noticed it is only happening when you start panning fast, if you start panning really slow it works fine. Hope this information helps. Waiting for the bug fix. Thank you!
Please try 2.3.5-pre1. I believe this issue is resolved by https://github.com/xamarin/Xamarin.Forms/pull/845 (for Images, Labels, and Buttons, at least). Thank you!
Yes, seems that it has been fixed. Excited to see it. Thank you, guys!
Hey, my problem doesn't seem to be fixed.. I'm using PanUpdated on Grid inside ContentView. It's still twinkles:/
@Ido Shviro We understand that this issue may be present on controls other than Images, Labels, and Buttons at this time. The fix does require that we switch all controls over to our new "fast renderer" model, which is an ongoing effort. In the meantime, if you are able to put the PanGesture on a container *around* the Grid instead of on the Grid itself, that may resolve your problem. Let me know if you have any further questions. Thank you!
What do you mean by " put the PanGesture on a container *around* the Grid instead of on the Grid itself" Samantha? thx
See the example given here: https://developer.xamarin.com/guides/xamarin-forms/application-fundamentals/gestures/pan/#Creating_a_Pan_Container
Putting the panning on ContentView that wrapping the grid solved the problem. Thank you!
<Grid> <ContentView (with pangesture)> <SomeView/> </ContentView> <Grid> Wrapping it like this made no difference to me, im on 2.3.5 pre 3
I had pan on grid <Grid (with pangesture)> ... <Grid> which did not work properly I changed it to <ContentView (with pangesture)> <Grid> ... <Grid> </ContentView> now it works fine