In this video it shows the code to download a JPG file from FTP server and then display it over an ImageView in your Android App. It uses following dependency in the code:https://mvnrepository.com/artifact/commons-net/commons-net/3.10.0 I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
Tag: download
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 capture video using camera and save it in download folder from your Android App? API 34 | Android 14
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…
How to read an image file from Download folder and show it as bitmap in ImageView of your Android App?
This video shows the steps to read an image file from the download folder and then show it as bitmap in imageView widget of your Android App’s layout. 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…
How to save bitmap to an image file in Download folder from your Android App? Android 14 | API level 34
In this video it shows the steps to save a bitmap to image file in download folder from your Android App programmatically. It demonstrates this for Android 14 | API level 34. In this video it refers to the code from my below pages of posted earlier:https://programmerworld.co/android/how-to-fix-the-error-only-mutable-bitmaps-may-be-reconfigured-convert-immutable-bitmap-to-a-mutable-bitmap-in-android-app/https://programmerworld.co/android/how-to-create-and-save-an-image-file-in-download-folder-from-your-android-app-android-13-api-33/ I hope you…
How to create Excel file from ListView data and save it in Download directory from your Android app?
This video shows the steps to create an excel file from the ListView data. In this demo it first creates the ListView with some sample string data. Then in the button onClick method, it reads the listView data one by one iteratively and populate the respective cells of an excel…
How to download an image file from AWS S3 using signed URL in your Android App?
In this video it shows the steps for downloading an image file from AWS (Amazon Web Services) S3 (Amazon Simple Storage Service) in your Android App. It uses the signed URL of the file which is valid for a limited period (max 12 hours). In this demo the signed URL…
How to view and download an image file from a URL using DownloadManager in your Android App?
In this video it shows how one can use download manager to download an image file (or any other file type) from internet using the URL. It also shows how to use input stream from the URL to create the respective Bitmap from the image and then display it on…
How to auto fit (auto scale or Zoom) an image in webView of your Android App? – Android Studio code
This video shows the steps to auto fit/ auto scale an image file in the WebView widget of your Android App. It uses below attributes in the settings of the WebView object to enable the auto-scaling:webView.getSettings().setLoadWithOverviewMode(true);webView.getSettings().setUseWideViewPort(true); For testing purpose, it uses below image from the testing page of programmer world…
How to download an image file from internet and display in UIAxes using MATLAB script in App Designer?
In this video it shows the steps to download an image file from the internet (https URL) and save it in the local PNG file. In this video it uses sample images from the below webpage:https://programmerworld.co/android/how-to-create-a-gif-from-jpeg-images-in-your-android-app-android-studio-complete-code/ And below are the respective images’ URLs:https://i0.wp.com/programmerworld.co/wp-content/uploads/2022/11/images.jpeg?w=452&ssl=1https://i0.wp.com/programmerworld.co/wp-content/uploads/2022/11/images1.jpeg?w=679&ssl=1 It uses WEBREAD command to read the…