Latest and Greatest

Read our latest blog articles

Learn the latest and greatest in WordPress site building. We’re offering tutorials, tips and tricks, and video walkthroughs on our blog.

  • How to Build a Chat App with ZEGOCLOUD SDK in Android Studio

    In this blog, we’ll explore how to build a one-on-one chat app using the ZEGOCLOUD UIKITs in Android Studio. You’ll learn how to set up your development environment, integrate real-time communication features, and create a user-friendly messaging experience. Let’s dive in and bring your chat app idea to life! Step 1: Create a New Project…

  • 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 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

    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 add Sign In with Google in Android Studio

    How to add Sign In with Google in Android Studio

    Signing in with Google is probably the most popular way users authenticate themselves these days. Its the easiest and the quickest. Let’s see how to add this to a Android App using Kotlin and XML. Source code: 1. Create the App Click on “New Project” to create the app Select “Empty Views Activity” and click…

  • How to connect Firebase with Android Studio App

    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 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…