In this video it shows the steps to run a python code in Android App’s code. It calls the python script from the Java code. It uses chaquopy plugin, which is Python SDK for Android. Details are available at: https://chaquo.com/chaquopy/ The steps for setting the Gradle is taken from this…
Tag: execute
How to record video of your App running in emulator or device from Android Studio?
In this video it shows the steps to record the video of the App screen/ layout running on emulator or any device paired/ connected to Android Studio. It shows 2 options to record the video:1. Recording option from logcat option2. Extended Controls option By default, the videos are recorded in…
How to use YouTube IFrame Javascript API to play YT videos embedded in your Android App?
In this video it shows the steps to implement YouTube IFRAME API to play the YouTube videos in your Android App. In this video uses the sample Java Script HTML code from the google developer page: https://developers.google.com/youtube/iframe_api_reference I hope you like this video. For any questions, suggestions or appreciation please…
How to build a simple video streaming Android TV App using WebView in Android Studio?
In this video it shows the steps to build a very simple video streaming Android TV App using WebView. It uses a sample video hosted on my website: programmerworld.co for the demonstration purpose. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
How to translate texts into different languages (English, German, Arabic, Korean) in your Android App using ML Kit?
In this video it shows the steps to implement and use google’s ML Kit to translate languages in your Android App. It refers to google developers page to get the required implementation for this App’s development:https://developers.google.com/ml-kit/language/translation/android#java I hope you like this video. For any questions, suggestions or appreciation please contact…
How to connect to Oracle database and run SQL queries from matlab command line and database explorer App?
In this video it shows the steps to configure the Oracle database in the matlab environment using the database explorer. The it shows how one run a query on the connected database through the database explorer or Matlab commands/ script. In this video it initially shows the result of connecting…
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 store images in SQLite database (insert, update, delete and fetch) in your Android App?
This video shows simple steps to store the image files in your local SQLite database. For storing the Images in the database, unlike simple text or numbers, it uses BLOB field. It first converts the image file (or image) into bitmap. Then it converts the bitmap into bytes by compressing…
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)….