How to uniquely identify (get Android ID) your Android phone from your Android App? In this video it shows the steps to implement the code in which the unique Android ID of the phone or device is fetched. The Android ID is unique to each device and the value is…
Tag: apps
How to get alphabets from string (includes special characters, spaces) in Android App using regex?
How to extract or filter out only alphabets from an alphanumeric string (including special characters and spaces) in your Android App using regular expression (regex)? In this video it shows how one can use regular expressions to filter or extract only the alphabets from a string which contains special characters,…
How to customize the date and time in any format using the calendar API in your Android App?
In this video it shows how one can customize the date and time to any format. It uses the calendar API to pull or extract the elements of date and time such as Days, Month, Year and Hours, Minute and Seconds. It takes the instance from the calendar to capture…
How to extract integers from alphanumeric string in your Android App?
In this video it shows how one can extract or filter all the digits (integers) from any alphanumeric string/ texts. It uses replaceAll method of the string to replace any non-numeric character with null (that is delete the non-numeric characters). In demo it shows how from our email ID –…
How to connect to the Oracle database using JDBC driver from your Android App? – Android Studio Example
In this page it shows the steps to develop the Android App code to connect to the Oracle database. It briefly shows the steps to install and setup the Oracle database on your machine initially. Then it takes through the steps of how to include the jdbc JAR file in…
How to maximize/ minimize/ full screen browser window in Selenium Automation?
In this page it shows steps to maximize, minimize or full screen the browser window in the Selenium automation code. 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 Code:
How to set the color of the selected part of the text in EditText or TextView in your Android App?
In this tutorial it shows how one can set the color of the text (both foreground and background) of the selected part in the EditText or TextView in your Android App. It uses Spannabale string concept to set the color of the selected part of the text. I hope you…
How to convert drawable resource image into bitmap in your Android App?
In this video it shows how convert an image from the resource folder in the Android App’s environment to Bitmap in the Android App. It uses “BitmapFactory.decodeResource” API for the same. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email…
How to save edited text (bold, italic, underline, alignment) in SQLite database in your Android App?
In this video it shows how to save the edit text information, such as Bold, Italics, underline or Left/ right/ center alignmnent (justification) in a SQLite database. Part 1 of this tutorial is available in the below link:https://programmerworld.co/android/how-to-create-your-own-text-editor-android-app-for-making-text-bold-italics-underline-alignment/ I hope you like this video. For any questions, suggestions or appreciation…
How to show progress bar/ image while waiting for a function (INET/ IP address of a website) to finish in your Android App? – using java.util.concurrent
How to wait for a task/ method to finish before moving ahead in the main thread of your Android App? In this vidoe it shows how to display a wait bar or a progress bar (indeterminate mode) while waiting for a function or method to complete its execution in the…