The video demonstrates how to retrieve a list of input IDs from the channels on your Android TV using the TvInputInfo object from the TvInputManager class. In addition, the TvInputInfo object can retrieve package and service info. The source code for accomplishing all these is shared, showing how to import the necessary classes and specify a MainActivity. The video also highlights that the Input IDs vary based on the TV brand and model number. Any inquiries, suggestions, or appreciation can be addressed via the posted contact details.
Tag: info
Create your Firebase Realtime database Calendar App to store events or reminders? – Android 13 API 33
In this video it shows the steps to create your firebase database based Calendar App. This App can be used to store your reminders or events in your firebase database. 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 add/ save a new contact in phone directly from your App? – Android Studio code
In this video it shows how to save the contacts directly from your Android App programmatically. It uses ContentProviderOperation to structure the input and then insert it in the phone’s content as a new contact. I hope you like this video. For any questions, suggestions or appreciation please contact us…
How to add a new contact in phone using intent from your Android App?
In this video it shows steps to add new contacts in your phone using the intent type ContactsContract.RawContacts.CONTENT_TYPE. In this video the major part of the code is taken from the below page of Android developers:https://developer.android.com/training/contacts-provider/modify-data#InsertContact However, in this video it shows the above code in action. I hope you…
How to get SSID of the Wifi using WifiManager.getConnectionInfo API in your Android App? – For SDK 29 (Android 10)
This video shows the code to get SSID of the wifi in your Android App using the WifiManager.getConnectionInfo API. 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: package com.programmerworld.getssidofwifi;import androidx.appcompat.app.AppCompatActivity;import androidx.core.app.ActivityCompat;import android.Manifest;import android.content.pm.PackageManager;import android.net.wifi.SupplicantState;import…
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 get current date and time in your iOS App? -Xcode tutorial
This video shows a simple iOS App development for getting the current date and time from the iPhone’s OS. Then it uses a label to display the date received in the string format in the label. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to get the installation date of any App from your Android App?
In this video it shows how to get the installation date of any App installed on your Android Phone. In this video it develops an app and then uses the package manager info to fetch the installation date of the app based on it’s package name. Package Manager Info can…
How to get IMEI (International Mobile Equipment Identity) number of your phone programmatically in your Android App?
In this video it shows how to get the unique IMEI (International Mobile Equipment Identity) number of your phone (Sim slot) in your Android App programmatically. It uses the TelephonyManager API to get the IMEI of the respective sim slot of the phone. I hope you liked this video, for…