In this implementation it shows how to display the splash screen for a fixed duration at the start of your Android App. Steps involves: I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other…
Tag: start
Difference between finish() and finishAndRemoveTask() in Android App code.
In this video it shows the difference between the two APIs in Android – finish() vs finishAndRemoveTask(). finish() is basically to minimize the App’s view so that the user cannot see the App’s layout anymore. It is similar to pressing back button from App’s home page to go back to…
How to solve Oracle database ERROR: ORA-12541: TNS:no listener?
Executing sqlplus to connect to local database gives below error when the respective service is not running. To solve this issue, follow below steps: 1. Goto Services.msc 2. Start the below services: 3. Then try again the sqlplus command. Enter the user-name and password if prompted.
Coding Tips for Beginners
Start with very basic program, say Print ¨Hello World¨ or something similar, take baby step at a time. Play around with the same program by changing font, text size, format etc. for feel good factor. Don’t just start with theory always go with practical simultaneously. Hands-on approach is always better….
How to create your own Text Editor Android App for making text bold, italics, underline, alignment?
How to create your own complete Text Editor Android App to make the selected text bold, italics, underline or set the alignment? This video shows the steps to create a text editor App in very simple approach. In this tutorial, it shows how once can make the selected text in…
How to insert splash screen at the start of your Android App?
In this video it shows how to create a splash screen (welcome screen) at the start of your Android App. This splash screen is displayed while your App takes time to load on the mobile. The splash screen can be used to display company’s (App’s) logo or certain information which…