In this video it shows the code to delete a file over FTP server from your Android App’s Java code. 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: GitHub: https://github.com/programmerworld1990/deletefromftpMaven Dependency:…
Tag: applications
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 build a simple video streaming Android TV App using WebView in Android Studio?
In this video it shows the steps to build a very simple video streaming Android TV App using WebView. It uses a sample video hosted on my website: programmerworld.co for the demonstration purpose. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
Create your Firebase Realtime database Calendar App to store events or reminders? – Android 13 API 33
In this video it shows the steps to create your firebase database based Calendar App. This App can be used to store your reminders or events in your firebase database. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at:…
How to share bitmap image over Telegram, WhatsApp, google photos, etc. from your Android App?
This video shows the steps to share an image over other applications such as Telegram, WhatsApp, google photos, etc. directly from your Android App. In this video it shares the image in bitmap form (as an image) and not as a file. To share the complete files one can refer…
How to create a GIF from JPEG images in your Android App?-Android Studio complete code
This video shows the steps to create gif (Graphics Interchange Format) file from a set of JPEG images. It creates animation from the set of JPEG file. It uses the AnimatedGIFWriter Java code publicly available in the github post – https://github.com/dragon66/android-gif-animated-writer/blob/1b0cd020fa2e5bdb571c7c72f9352aee3843e181/src/com/github/dragon66/AnimatedGIFWriter.java It reads the jpeg image files from the download…
How to allow “Install unknown apps” in your Andorid phone?
Please note, one should avoid installing unknown Apps or Apps from unknown sources. They may harm the device or retrieve personal user data from the device. So, please follow the below steps only when the App’s installation file (APK) is received from trusted source. However, reliable sources, such as Google…
How to create 2 launcher activities (app icon) using 1 apk installer for your Android App? – Android Studio tutorial – API 32 | Android 12
In this video it shows how one can create two launcher icons for specific activities of their Android App. It creates two activities for demo purpose and connect to different layouts which can be loaded during the onCreate method. Then, in manifest file, it creates multiple activities tags as launcher…
How to show progress bar/ image while waiting for a function (INET/ IP address of a website) to finish in your Android App? – using java.util.concurrent
How to wait for a task/ method to finish before moving ahead in the main thread of your Android App? In this vidoe it shows how to display a wait bar or a progress bar (indeterminate mode) while waiting for a function or method to complete its execution in the…
How to get Date and Time from online servers in your Android App?
In this video, it shows how one can fetch date and time from an online server in your Android App. Fetching or synchronizingtime from an online server may give more accurate results in case the system’s (OS) date and time is manipulated by some other Apps. In this tutorial it…