In this video it shows the steps to create and save an image file in the download folder from your Android App. The App is developed in Android Studio for Android 13 – API 33 version. I hope you like this video. For any questions, suggestions or appreciation please contact…
Tag: apps
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 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…
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…
Show string array in Recycler View of your app – Android Studio Tutorial
In this video it shows steps to display a list of strings (array) in the recycler view of your Android App. It shows the steps to create the recycler view adapter class and use it to set the adapter value of the recycler view. It refers to below page from…
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…
How to open and convert a JPEG file (from Download folder) into Bitmap in your Android App?
In this video, it shows how to open a jpeg file from download folder and convert it into Bitmap in your Android App. It then uses ImageView to display the image within the App layout. It uses StorageManager to access the internal storage volume. And then access the jpeg file…