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…
Tag: device
How to resize/ set the size of bitmap image using createScaledBitmap in your Android App?
In this video it shows how one can use createScaledBitmap method of Bitmap to resize or set the size of any image in the Bitmap. In this demo it uses ImageView widget to display the raw (unscaled) and resized images. I hope you like this video. For any questions, suggestions…
How to show images in Recycler View in your Android App?
In this video it shows how to place and show the images in recycler view in your Android App. It creates the RecyclerViewCustomAdapter class for showing the images by setting the respective bitmaps of the images in the imageview. It uses a Frame layout containing ImageView used for the RecyclerView…
Android Studio – Fix the error “Could not resolve com.android.tools.build:gradle:7.4.0”?
In this video it shows the steps to fix the gradle error in Android studio. Actual issue is with Java version mismatch as explained in the below line of error: To resolve this issue, it changes the Gradle JDK for build in the settings of Android Studio. I hope you…
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 get list and count of files of Download folder from your Android App? – API 33
In this video it shows how one can get all the files available in the Download folder of your phone. It shows the steps to fetch the list of files for API-33 in Android Studio. I hope you like this video. For any questions, suggestions or appreciation please contact us…
Enable google playstore in Emulator/ AVD (Android Virtual Device) in Android Studio
In this video it shows steps to enable google play store option in your Emulator/ Android virtual device in Android Studio. Google play store would be required to download and install other Apps in the Emulator. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to create Assets directory in your Android Studio environment?
In this video, it shows how to create assets folder in your Android Studio environment. Assets folder can be used to keep assets, such as image files, which can be used in the App development using the getAssets method. I hope you like this video. For any questions, suggestions or…
How to implement image classification/ labelling method in your Android App?
In this video we will see how to implement image classification/ labelling method in your Android App. It uses com.google.mlkit:image-labeling dependency for the same. The details of this library is also shared in the below google developer page: https://developers.google.com/codelabs/tflite-computer-vision-mobile#0 In this tutorial it uses 2 images – flower and finger…