This demo shows the setting to hide the App Icon from your Android device’s home screen. If the App is “force Stop” and killed from the task list (task manager), then the only way to re-start the App will be reinstall it from the APK file initially used to install…
Tag: access
How to upload a file to FTP server from your Android App Java code?
In this tutorial, it shows the steps to develop your Android app to upload an image file to the FTP server using FTP Client commands. 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…
How to integrate Meta’s AI Llama Json APIs in your Android App java code?
This tutorial shows the steps to integrate Llama (Meta’s AI open-source tool) APIs in your Android Java’s code using Curl command. It uses Volley libraries to call the Curl command from the Java code. For documentation on the APIs reference used in this code, please refer: https://docs.llama-api.com/api-reference/endpoint/create In this demo…
How to integrate google’s Gemini AI in Android App Java code?
This video shows the steps to integrate the Gemini’s API, Google’s AI tool, in your Android App’s Java code.It refers below document for quickstarter guide:https://ai.google.dev/tutorials/android_quickstart#java For APIKey generation, one can use below link:https://aistudio.google.com/app/apikey I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
How to read the content of a HTTPs website in your Android App?
The provided content pertains to a video tutorial explaining how to read a HTTP or HTTPS website’s content (HTML/JSON) on an Android application. The tutorial involves demonstrating how to view the contents of Google’s homepage and programmerworld.co within an Android app environment. The post includes the complete source code for the application with various callbacks, interfaces, and classes such as HttpURLConnection, URL, InputStream etc. It also provides screenshots and the output for readability. Furthermore, it encourages viewers to contact them for any queries, suggestions or appreciation.
How to get the Signal Strength of the phone’s cellular network in your Android App?
The content provides a tutorial on how to check mobile network signal strength using an Android app. It suggests using the telephonyManager.getSignalStrength().getLevel() API. The value returns on a scale of 0-4, providing a gauge of signal quality; 0 signifies very poor signal strength, while 4 indicates very strong signal strength. The remaining part of the content includes a detailed walkthrough of an Android app’s code that utilizes the aforementioned method to display the signal strength. The resource for additional guidance is also supplied via a video link and contact information for further queries or recommendations.
How to open Device Explorer of Emulator (AVD) in new UI of Android Studio HedgeHog | 2023.1.1?
This video shows the steps to open the device explorer window in the new UI of Android Studio HedgeHog (2023.1.1). The device explorer window can be used to access and even place the files in the device’s folders, such as in download folder. I hope you like this video. For…
How to get current SIM card phone number in your Android App? API 34 | Android 14
The provided content is a tutorial with accompanying source code that shows how to fetch the current SIM card phone number on an Android device via an app. The method involves requesting permissions to access phone numbers, which is implemented in the MainActivity of the android application. The tutorial includes explanations with the source code for requesting necessary permissions and creating interface elements. It also provides a YouTube video link and contact details for programmers seeking additional clarification or have further inquiries.
How to fix android.os.NetworkOnMainThreadException Error by creating new Thread in your Android Studio Code?
In this video it shows the fix for android.os.NetworkOnMainThreadException error. It creates a new thread in the Android code to fix this error. 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 details:…
How to RequestLocationUpdates if LocationServices.getFusedLocationProviderClient.getLastLocation always return null value in your Android App?
This video shows the steps to implement request location updates APIs for enforcing the App and Android device to get the updated location information. This is particularly useful when the App is trying to access the last location from the getFusedLocationProviderClient library. If the getLastLocation API is returning NULL then…