Posts by Manoel Ferreira • 41 points
2 posts
-
0
votes1
answer434
viewsA: Check Connection to bank and validate to user
Taking a look at the Drivermanager documentation, we can see that if something goes wrong while running getConnection(), a Sqlexception exception will be released. So try to do the following: try {…
-
1
votes1
answer83
viewsA: How to let my Webview auto restart every 30 m
To make something run in the background, we must use the services (Service) of Android. public class UpdatePageService extends Service { @Override public void onCreate() { super.onCreate(); }…