Android Question webview and html5

ykucuk

Well-Known Member
Licensed User
Longtime User
Hi NJDude. I try with usb stick android device.it doesnt has very good hardware options. it loads url but after some second goes to crash with webview.

with google chrome browser it works well
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Have you tried Webview with WebviewExtras (and setting up a webchromeclient)?
 
Upvote 0

NJDude

Expert
Licensed User
Longtime User
Then try using an intent to open the browser, like this:
B4X:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "http://kreaturamedia.com/layerslider-responsive-jquery-slider-plugin/")
StartActivity(i)
 
Upvote 0

ykucuk

Well-Known Member
Licensed User
Longtime User
NJDude,

cant use intent because i need open web in activity with defined area (left=0,top=0,width=200,height=300)
 
Upvote 0
Top