In this video it shows the code to delete a file over FTP server from your Android App’s Java 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 Complete source code and other details: GitHub: https://github.com/programmerworld1990/deletefromftpMaven Dependency:…
Tag: ip
How to check whether the HDMI input state is connected in your Android TV App?
The content features a tutorial video that explains how to check if an HDMI input has a source connected by using code in a custom Android TV app. The detailed guide goes over the source code, which involves the use of specific code libraries and syntax in the Android system. When executed, this code tells the app to show if the HDMI input is connected or not. The author provides additional resources and a contact for questions. The code can be beneficial for developers who need to monitor HDMI input states in Android TV applications.
How to connect Android TV to Android Studio environment over WIFI and enable debugging?
In this video it shows the steps to connect Android TV to Android Studio environment over WIFI for debugging the App’s code. Two simple Steps which needs to be followed: Command for connecting: Android Debug Bridge (adb) ‘ADB.exe’ command is in the following path. Either change to the below path…
How to disable keyboard pop-up (Soft Input Method) on clicking the Edit Text in your Android App?
In this video it shows the code to hide the soft input method (key-board defined in Android OS) when any of the input widget, such as Edit Text (Plain Text) is clicked in the Android App. I hope you like this video. For any questions, suggestions or appreciation please contact…
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 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 create stored procedure in MS SQL database server and run (call) it from your Android App?
This video shows the complete end to end steps to create a simple stored procedure in MS SQL server and call the same from the Android App. In the first part of the video it shows how to create a simple stored procedure using MS SQL Server Management Studio (SSMS)….