D
Deleted member 103
Guest
Hello,
I've downgraded my Nexus-7 from Android 5.1.1 to 4.4.4 today, and now it's as fast as buying it on 2013.
Unfortunately, I now notice an error when displaying Webview with CustomLayoutDialog, the title is cut off (see picture below).
I believe that the error lies in the CustomLayoutDialog, because after a test with only one webview, the error is no longer present.
I've downgraded my Nexus-7 from Android 5.1.1 to 4.4.4 today, and now it's as fast as buying it on 2013.
Unfortunately, I now notice an error when displaying Webview with CustomLayoutDialog, the title is cut off (see picture below).
I believe that the error lies in the CustomLayoutDialog, because after a test with only one webview, the error is no longer present.
B4X:
'With CustomLayoutDialog
Private Sub mnuHistory1
Dim dialog As CustomLayoutDialog
Dim sf As Object = dialog.ShowAsync("", "OK", "", "", Null, True)
Wait For (sf) Dialog_Ready (DialogPanel As Panel)
DialogPanel.LoadLayout("frmWebView")
Dim WebView1 As WebView = DialogPanel.GetView(0)
WebView1.LoadHtml(File.GetText(File.DirAssets,Starter.language.value("strHistoryFile")))
Wait For (sf) Dialog_Result (Result As Int)
End Sub
'without CustomLayoutDialog
Private Sub mnuHistory2
Activity.LoadLayout("frmWebView")
WebView1.LoadHtml(File.GetText(File.DirAssets,Starter.language.value("strHistoryFile")))
End Sub