How to Create Calculator App with Example in Android
Today, we will learn how to implement a simple calculator app in Android Studio. In this article, we will learn about the complete development of the project. Build a simple…
Today, we will learn how to implement a simple calculator app in Android Studio. In this article, we will learn about the complete development of the project. Build a simple…
The Media Player class can be used to control the playback of audio/video files and streams. Playback of audio/video files and streams on Android can be controlled in a variety of ways. One of these methods is to use the MediaPlayer class. A software or hardware device that can play media files or disks. For…
The splash screen is mainly the first screen when the application is opened. It is a permanent screen that is displayed for a period of time and is usually displayed…
On Android, SeekBar is a ProgressBar extension that adds a sliding slider that can be moved from left to right. The user can touch the thumb and drag left or…
Android provides a widget that implements the swipe to refresh layout mode, and users can use it to trigger vertical sliding updates. This is achieved through the SwipeRefreshLayout widget, which…
In this tutorial, we will learn how to create Nested ScrollView in android. What is NestedScrollView / how to create Nested ScrollView? NestedScrollView is similar to ScrollView, however, it helps…
In this tutorial, we will learn ScrollView and Horizontal ScrollView in android. In Android, ScrollView is a view group used to create a vertical scroll view. The scroll view contains…
Introduction to Fragment Android Fragment is the part of the activity, it's also called sub-activity. There may be multiple fragments in an activity. Fragments represent more than one display screen…
Shared preference is a way of storing and retrieving a small amount of data in the form of key/value pairs in a file on a storage device, such as strings,…
What is Custom Alert Dialog Box? The custom dialog uses DIALOG to create a custom alert or pop-up in Android Studio. A dialog box will appear above the current window,…