Honeycomb Problem WebView1.LoadUrl("File:///android_asset/read.html")
LoadHTML will load complet HTML string code.
i wish to load local file , html.
It is working perefct with previous OS , on 3.2 Emulator
But Not on the Real Tablet honeycomb.
Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim Timer1 As Timer
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim back As ImageView
Dim in As ImageView
Dim out As ImageView
Dim WebView1 As WebView
Dim inn As Boolean
Dim ProgressBar1 As ProgressBar
Dim n As Int
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("web2")
WebView1.LoadUrl(File.ReadString(File.DirAssets, "drug.html"))
ProgressDialogShow("Loading ")
Timer1.Initialize("Timer1", 500) ' 1000 = 1 second
Timer1.Enabled = True
Timer1.Interval=500
With :
WebView1.LoadUrl("File:///android_asset/read.html")
it is working PEREFECT
in android 2.2
emulator 3.1
BUT NOT in Real tablet 3.2
show me the url link with can not find error
but when i click the link , it open perefect
the webpage in real android 3.2
seem as load problem and not the location in honeycomb device.