Hi All
A difficult question to phrase.
I have an App [Configulator] that in in the Help file has a link to a web site. That web site has links to downloadable text files [Orangedox/Dropbox site]
If I go to the web site directly from the phones browser [Firefox], link to Orangedox the relevant file downloads successfully.
If I go to the web site using the link within the Webview I can link to Orangedox but the download does not work.
I suspect that originating in the Webview means that Orangedox doesn't have a download destination. [I am guessing.]
The simple solution is to not have the web site address as a link but it is preferable.
Any enlightening ideas welcome.
Regards Roger
A difficult question to phrase.
I have an App [Configulator] that in in the Help file has a link to a web site. That web site has links to downloadable text files [Orangedox/Dropbox site]
If I go to the web site directly from the phones browser [Firefox], link to Orangedox the relevant file downloads successfully.
If I go to the web site using the link within the Webview I can link to Orangedox but the download does not work.
I suspect that originating in the Webview means that Orangedox doesn't have a download destination. [I am guessing.]
B4X:
Sub HelpSub_Click
BuzzChirp
StartActivity(HelpActiv)
End Sub
'HelpActiv
#Region Activity Attributes
#FullScreen: true
#IncludeTitle: false
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
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.
Private helpview As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
Activity.LoadLayout("helplay")
helpview.LoadURL("file:///android_asset/helpfile.htm")
End Sub
The simple solution is to not have the web site address as a link but it is preferable.
Any enlightening ideas welcome.
Regards Roger