Hi all,
I use a small program with buttons. Each button opens a different webview. In the webviews i go back with the back button with this:
My problem is now that i want to go back to the opening screen with the back button. Is there a way to go back from the webviews to the start screen with the back button?
Thanks!
I use a small program with buttons. Each button opens a different webview. In the webviews i go back with the back button with this:
B4X:
Sub activity_KeyPress (KeyCode As Int) As Boolean
Select keycode
Case KeyCodes.KEYCODE_BACK:
page_back
Return True
End Select
End Sub
Sub page_back
webview1.Back
End Sub
My problem is now that i want to go back to the opening screen with the back button. Is there a way to go back from the webviews to the start screen with the back button?
Thanks!
Last edited: