-
How to Create a Menu in Android Studio: A Beginner’s Guide
Creating a menu in an Android app can improve user experience by giving users easy access to various options and activities. This blog will walk you through the steps of making a menu button in Android Studio, including how to add a drawable icon, create a menu, and use viewBinding to implement click functionality. Now…
-
How to Change Launcher App Icon in Android Studio [2024]
A step-by-step guide to effortlessly change your launcher app icon in Android Studio Step 1: Open the Android mode of your project Open Android Studio and ensure your project is in Android mode to access the files required for changing your logo Step 2: Find the mipmap folder Locate the “mipmap” folder by navigating through…
-
RecyclerView in Android Studio [2024]
RecyclerView is a like a ListView in Android apps with better performance. It recycles the items that are already used for the upcoming items, so it takes much less RAM and is also faster. We will create a simple Numbers app showing the number image and name of each item of the RecyclerView. Here’s how…
-
How to Create a Video Calling Android App using ZEGOCLOUD
ZEGOCLOUD is a amazing service which offers Voice calling, Video calling and streaming APIs to help you easily develop powerful apps. In this blog, we will use their video calling API to easily create a simple video calling app in android studio. 1. Create ZEGOCLOUD account To use ZEGOCLOUD API for our video calling, we…
-
How to connect Firebase with Android Studio App
If you want to add any Firebase functionality in your android app. First, you will have to connect your Android App with Firebase. Check out the video version of this blog: In this blog I will show you how to easily connect Firebase with Android App in Android Studio and also test it using Firestore.…
-
Splash Screen in Android using Kotlin
Splash Screen is the first screen of the App when it is opened. It generally the logo of the App or some kind of loading animation. We have made a video tutorial on it. Access source code of this project here: Step 1: Create your project We will be creating the Splash Screen in XML…