Design

img
Design

Which Media recorder is best for android

By: Spoke Right / 19 Nov, 2023

To record audio and video files, the MediaRecorder class can be used. A sound file can also be created after recording the media. This file can be played later.

Example:

In t...

img
Design

Which video player is best for Android

By: Spoke Right / 19 Nov, 2023

The video files can be played in android by using the MediaController and VideoView classes.

MediaController class:

The media controls like play/pause, previous, next, fast-forward, r...

img
Design

What is media player for Android

By: Spoke Right / 19 Nov, 2023

The MediaPlayer class in Android is used to play and control audio files.

MediaPlayer class:

For controlling the audio or video files, the android.media.MediaPlayer class is used.

...

img
Design

What is JSON Parser Android

By: Spoke Right / 19 Nov, 2023

JSON stands for the Javascript Object Notation. It is a programming language, minimal, textual, and a subset of JavaScript and an alternative to XML. We can parse the JSON object and array in Andro...

img
Design

What is XMLPullParser Android

By: Spoke Right / 19 Nov, 2023

To parse the XML file, the XMLPullParser is recommended in Android. It is faster than the SAX and DOM parser. To parse the XML document using the XMLPullParser, the org.xmlpull.v1.XmlPullParser int...

img
Design

Android XML Parsing Using SAX Parser

By: Spoke Right / 19 Nov, 2023

Using the SAX, DOM, etc., that are used as parsers, we can parse the XML file in Android. The SAX parser can be used to parse the XML file only and not to create the XML file.

Adv...

img
Design

What is Android XML Parsing using DOM Parser

By: Spoke Right / 19 Nov, 2023

Using the SAX, DOM, etc., that are used as parsers, we can parse the XML file in Android. The SAX parser can be used to parse the XML file only and not to create the XML file.

Adv...

img
Design

What is spinner in Android with example

By: Spoke Right / 19 Nov, 2023

To perform the operations on the SQLite, the SQLiteOpenHelper class needs to be extended. In the DatabaseHandler class, the onCreate() and onUpgrade() methods of SQLiteOpenHelper class are overridd...

img
Design

How do i access SQLite on Android

By: Spoke Right / 19 Nov, 2023

To perform database operations on android devices, the SQLite is used in Android. It is an open-source relational database that is used for storing, manipulating, or retrieving persistent data from...

img
Design

What external storage mean in Android

By: Spoke Right / 19 Nov, 2023

To save or read data from a device’s external memory such as an SD card, with the help of the FileInputStream and FileOutputStream classes, the Android External Storage is used.

Example:...