This video shows the steps to capture the video from your phone’s camera and then save the video in the download folder of your Android App. 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…
Tag: intent
How to programmatically uninstall any other app on your device from your Android App?
In this video it shows the steps to uninstall an Android App programmatically from your Android App using the intent. In this demo it refers to the below webpage for getting the list of the package names of Apps installed on your device – https://programmerworld.co/android/how-to-get-the-list-of-all-the-apps-installed-in-your-android-phone-android-12-api-level-31/ I hope you like this…
How to compress and reduce the size (resolution) of image file from your Android App? – Android 13 API 33
This video shows the steps to compress the image size and save it as another file in the download folder from your Android App. 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…
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 navigate to Home screen (Layout/view) from your Android App programmatically using intent?
In this video it shows how one can navigate directly to the home screen layout from your Android App programmatically. 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: package com.programmerworld.homescreenapp;import android.content.Intent;import…
How to customize long press app icon item list (ShortcutManager menu dialog) for your Android App?
In this video it shows how one can customize the long press menu item list for the Android App. When a user presses the icon of any App, Android shows up some of the options. This list of options is called shortcut info list and the dialog is shortcut manager….
How to open and send email using the native client directly from your Android App? – Source Code
In this short video, it shows the steps to create and Email client opening App. In this simple App, it just has one button. Clicking on that button it opens up the in-built default (native) email client of the phone. The use case of this concept will be to add…