To detect the touch events on the canvas of a View class we can use the boolean method onTouchEvent(MotionEvent). In…
The following code plots an array of integers as a line graph on canvas of a View class. This View…
In android we can use the canvas while creating a View by calling the onDraw(Canvas) method. Canvas is a class…
In android, we can use the MediaMetadataRetriever to retrieve a thumbnail image of an online video from its url. MediaMetadataRetriever…
This tutorial shows a sample project using Google Sign in in AIDE. Step 1: Create a new project in AIDE with…
An Intent is a description of an operation or action to be performed. It can be used to launch an…
To create a stopwatch app for android, we can use android Chronometer. Here we will create a simple Stopwatch with…
Here we will create a simple app which displays a DatePickerDialog on clicking an ImageView and displays the selected date…