F F.Campanella Member Licensed User Longtime User Jul 1, 2015 #1 Hi, I want to disable the scroll bounce in a Web View. What code should I use?
Erel B4X founder Staff member Licensed User Longtime User Jul 1, 2015 #2 Try this: B4X: Dim no As NativeObject = WebView1 no.GetField("scrollView").SetField("bounces", false) Upvote 0
Try this: B4X: Dim no As NativeObject = WebView1 no.GetField("scrollView").SetField("bounces", false)
F F.Campanella Member Licensed User Longtime User Jul 1, 2015 #3 The solution correctly work!!! Thanks Erel!!! Upvote 0