J junaidahmed Well-Known Member Licensed User Longtime User Mar 24, 2012 #1 As I am using Webview to display html table,for that I would like to set percentage as 200% for Zooming.Pls advise how to do that.
As I am using Webview to display html table,for that I would like to set percentage as 200% for Zooming.Pls advise how to do that.
S susu Well-Known Member Licensed User Longtime User Mar 24, 2012 #2 You can use Reflector library to do that: B4X: Dim WV as WebView Dim Obj1 As Reflector Obj1.Target = WV Obj1.RunMethod2("setInitialScale", "200", "java.lang.int") Upvote 0
You can use Reflector library to do that: B4X: Dim WV as WebView Dim Obj1 As Reflector Obj1.Target = WV Obj1.RunMethod2("setInitialScale", "200", "java.lang.int")