This video shows the steps to implement the palette library (provided by Android) in your gradle file (App level gradle file). It further shows how one can easily use this API in the Java code to get certain colors from the Image considered in this video for demonstration. This video…
Tag: file
How to create a simple text file in your iOS App? – Xcode tutorial using swift language
This Video shows simple steps to create a text file from your iOS App. It shows the simple swift code which is written to do create the file in the document directory of the iPhone. It uses Xcode environment to develop and simulate the App in the in-built simulator. It…
How to create an Excel file from your Android App?
This video shows the steps to create an Excel file in your Android App. It uses third party library (not available as in-built APIs) from org.apache.poi. It hard-codes the file name and sheet name in the code. However, that can be taken as an input from the user. For the…
How to host your Android App on Google Play Store? – Step by step guide with Calculator App example
This video shows step by step process to build a very simple calculator App in Android Studio and then upload it (host it) on the Google Play Store. While entering the details of the App on the google play store, it uses very simple, easy and short descriptions and images….
How to create and delete a file programmatically from your Android App?
In this video it shows how to create and delete a file in your phone’s file system from your Android App. It uses a sample file ABC.pdf for this demo. In this App 2 buttons are created, one for creating the file and another for deleting the file. It uses…
How to check internet connection from your Android App?
In this video is shows the steps to check whether the internet is available or accessible from your phone or not. For check the internet accessibility, in this App it uses the Inet API to fetch the IP address of any website or server. In this video it tries to…