This video demonstrates how to set the default orientation to Landscape in an Android App. The source code includes the necessary package, imports, and class details. The method for setting the orientation is explained within the content, with a request to contact for any queries or feedback. The provided link redirects to a contact page, and an email address is also given. Additionally, screenshots of device control windows are included. For further details, refer to the provided YouTube link.
Tag: set
How to convert an image to BLOB (bytes array) and vice-versa using Base64 encoder in your Android App? API 34 | Android 14
This video shows the steps to read an image file from the download folder of the android device. Then convert it into a Blob type, basically a bytes array. Then it encodes it into string type using Base64 character encoding. And it decodes it back. It displays both encoded and…
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 navigate to Home screen (Layout/view) from your Android App programmatically using intent?
In this video it shows how one can navigate directly to the home screen layout from your Android App programmatically. 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: package com.programmerworld.homescreenapp;import android.content.Intent;import…
How to get the list of Apps installed on the phone from your Android App? – complete source code
This video shows a simple method to get the list of all the Apps installed on your phone. It uses the Package Manager to get the list of all the packages installed and then extracts the package name from it. It uses list view to display the package names (installed…
How to create your own Text Editor Android App for making text bold, italics, underline, alignment?
How to create your own complete Text Editor Android App to make the selected text bold, italics, underline or set the alignment? This video shows the steps to create a text editor App in very simple approach. In this tutorial, it shows how once can make the selected text in…