Android Question How to send the app on your phone

Please I m a new B4A developer, After you finished designing your application, which folder does the application reside? So I can transfer it to my phone.
 
I convert my website into application, it's running fine but when ever I click the back bottom instead of going to the previous page that was shown it will exit. Please I need assistance please. I'm new to B4X
 
Upvote 0

mcqueccu

Well-Known Member
Licensed User
Longtime User
I convert my website into application, it's running fine but when ever I click the back bottom instead of going to the previous page that was shown it will exit. Please I need assistance please. I'm new to B4X
If you have your own back button then put implement it like this

If you are using only webview
B4X:
webview1.back

If you are using Webview Extra Libraries then you can check if there is previous history like this
B4X:
If webviewExtra.CanGoback Then webviewExtra.Back

If you are checking with physical buttons on the phone, then capture the keypress back and put the code there
 
Upvote 0
I am using the Android
If you have your own back button then put implement it like this

If you are using only webview
B4X:
webview1.back

If you are using Webview Extra Libraries then you can check if there is previous history like this
B4X:
If webviewExtra.CanGoback Then webviewExtra.Back

If you are checking with physical buttons on the phone, then capture the keypress back and put the code there
Back button.
I didn't create my own back bottom
 
Upvote 0
Top