Steps in this session:1. Create a simple App2. Build normal APK (non-obfuscated)3. Build Obfuscated APK In this video it shows the source code in the APK file for 3 types of APKs built:1. Debug variant2. Release non-obfuscated variant3. Release obfuscated In this video it refers to the below pages:– Android…
Tag: change
How to get Bitmap from View (of a widget) from layout in your Android App? – Android 13 API 33
In this video it shows the steps to convert the view of any widget (or layout) to Bitmap form in your Android App. This Bitmap is later used to display the image form in an imageView. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to print RecyclerView content in a PDF file from your Android App? – Android 13 | API 33
In this video it shows steps to print the content of the recycler view content (images) in a PDF file page. In this the Android App is developed in Android studio for Android 13 API 33 version. It re-uses the recycler view part of code from my previously published video….
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 take CSS Selector/Xpath using regular expression in Selenium?
In this video will see how to take CSS Selector/Xpath using regular expression in Selenium. We need to take regular expression when attribute values are so long or partially change every time. In that case we need to do unique partial match for values with the help of regular expressions….
How to convert .MOV or other video files extension to .MP4, .WMV or .MPEG file type readable by Windows Media Player using VLC?
In this page learn about how to convert media file types, such as .MOV, to a Windows Operating system readable file types, such as MP4, WMV, MPEG, etc. Usually files created in iOS are not compatible in Windows OS. This page can help to quickly translate or convert the video…
How to create and read a PDF file in your Android 11 App?
This video shows the steps to create and read a PDF file in an Android 11 App. It uses iTextpdf library for reading the PDF file and PdfDocument API from android.graphics.pdf to create the PDF file. It creates and reads from the same PDF file but the concept shown in…