As shown in this video, the main difference are: Set: List: 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: With Duplicate entry of “Tokyo” Without any duplicate entry:
Tag: apps
How to rotate the picture in ImageView of your Android app?
This video shows the steps to rotate the pictures in the image view of your Android App. It uses the SetRotation property of the ImageView to rotate the image. 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…
How to import image as asset and show it in ImageView (as static image) in your Android App?
In this video it shows the steps to import an image as an asset in Android Studio environment and then display it on an image view in 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:…
How to restrict Dual App functionality for your Android App? – Android Studio code
This video shows the code to restrict the dual app functionality for your Android App. It seems that dual apps is an OS level functionality and most of the phone OEMs provide this functionality. There seems to be no direct API to restrict it. However, it can be done from…
How to RequestLocationUpdates if LocationServices.getFusedLocationProviderClient.getLastLocation always return null value in your Android App?
This video shows the steps to implement request location updates APIs for enforcing the App and Android device to get the updated location information. This is particularly useful when the App is trying to access the last location from the getFusedLocationProviderClient library. If the getLastLocation API is returning NULL then…
Android Studio – Fix the WebView error “The webpage could not be loaded because: net::ERR_CACHE_MISS”
This video shows how to fix the error “The webpage could not be loaded because: net::ERR_CACHE_MISS” in WebView. It shows how simply adding the below INTERNET permission in the manifest file solves the issue: I hope you like this video. For any questions, suggestions or appreciation please contact us at:…
How to read different sensors data in your Android app? Demo using virtual sensors in Android 13 emulator
This video shows the steps to read the sensors data in your Android App. It uses the emulator and respective virtual sensors to demonstrate it for Android 13/ API 33 level. In this video it shows the steps to read data from below type of sensors: I hope you like…
How to restrict screenshots of your App’s layout from your Android app?
In this video it shows the code to restrict capturing the screenshots or recording the App’s layout using Android’s in-built recording functionality. Steps to pair your device over wifi is shown in below link:https://programmerworld.co/android/how-to-wirelessly-connect-over-wifi-physical-phone-in-android-studio-for-debugging-your-apps-code/ I hope you like this video. For any questions, suggestions or appreciation please contact us at:…
How to scroll RecyclerView (Page up and down) programmatically from your Android App?
In this video it shows how to use ScrollBy API of RecyclerView to scroll the pages in recycler view programmatically from your Android App’s code. To build the recycler view it re-uses the part of code previously published in our below page:https://programmerworld.co/android/how-to-show-images-in-recycler-view-in-your-android-app/ I hope you like this video. For any…
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….