100 Days of Android Development: A Complete Guide For Beginners
In the dynamic world of Mobile application development mastering in developing applications is not just a skill but rather a journey. Welcome to the 100 days of Android Development journey where we will dive into different Android development important components day by day. The definition of Android Development of Android to the advanced Android component will be covered in this article....
read more
Android Jetpack Compose – Update Data in Firebase Firestore
In the previous article, we have seen How to Add Data to Firebase Firestore in Android, How to read the data from Firebase Firestore in Android. Now we will see How to Update this added data inside our Firebase Firestore. Now we will move towards the implementation of this updating data in Android Firebase using Jetpack Compose. We will be creating a similar screen as we were creating for adding the data and inside this screen, we will be updating our data inside our Firebase Firestore and that data will also be updated inside our app. Below is the video in which we can get to see what we are going to build in this app. A sample video is given below to get an idea about what we are going to do in this article....
read more
Android – Update Data in API Using Volley with Jetpack Compose
APIs are used in android applications to access data from servers. We can perform various CRUD operations using these APIs within our database such as adding new data, updating data, and reading as well as updating data. In this article, we will take a look at How to Update Data in API using Volley in Android with Jetpack Compose....
read more
How to Implement Android Slice?
Google introduced a new API called Slices in Android Pie. Slices are a component of the Android Jetpack Support library. Slices are a smaller UI template used to present your app’s content in the Google Search App. It enables users to do tasks faster outside of your app. In this article, we’ll go through how to use Slices in your app. Slices support various LiveData, Deeplink, Scrollable layouts, and so forth. Let’s commence this article....
read more
Implement Phone Number Validator in Android
Phone validation is useful for users to check whether the number entered by the user is a valid number or not. If the user has entered the number is not valid then it will show a Toast message to re-enter the number. In this article, we are going to discuss how to implement the phone number validator in Android step by step. A sample video is given below to get an idea about what we are going to do in this article....
read more
Android Jetpack Compose – Retrieve Data From the Firebase Realtime Database
Firebase Realtime Database is the backend service that is provided by Google for handling backend tasks for your Android apps, IOS apps as well as websites. It provides so many services such as storage, database, and many more. The feature for which Firebase is famous is its Firebase Realtime Database. By using Firebase Realtime Database in your app you can give live data updates to your users without actually refreshing your app. So in this article, we will be creating a simple app in which we will be using Firebase Realtime Database and retrieve the data from the Firebase Realtime database and will see the real-time data changes in our android application using Jetpack Compose. A sample video is given below to get an idea about what we are going to do in this article....
read more
Android – Clipboard Manager with Example
Clipboard Manager performs copy-and-paste operations within android applications. With the help of this user is able to copy and paste data across the different applications in android. In this article, we will look at How to implement Clipboard Manager in Android 13. A sample video is given below to get an idea about what we are going to do in this article....
read more
Android Jetpack Compose – Add Data to Firebase Realtime Database
Firebase Realtime Database provides us with a feature to give Real-time updates to your data inside your app within milliseconds. With the help of Firebase, you can provide Real-time updates to your users. In this article, we will take a look at How to add data to Firebase Realtime Database in Android using Jetpack Compose. A sample video is given below to get an idea about what we are going to do in this article....
read more
How to Build PDF Downloader App in Android with Kotlin?
If you are creating apps for students or for educational purposes then you need to add some PDF files for displaying some data inside our app. These PDF files are updated on regular basis. A sample video is given below to get an idea about what we are going to do in this article....
read more
Increase or Decrease the Volume Programmatically in Android using Jetpack Compose
Many times while building an android application such as using an audio player like a music player. We have to add functionality to add a volume controller for our media player within our application. So that we can control the volume of our media player. In this article, we will take a look at How to adjust the volume of an android phone programmatically in android using Jetpack Compose....
read more
Curved Text in Android using Jetpack Compose
In Android, there are no inbuilt schemes to implement designed text like the word art, which is available in applications like MS Word. We can always refer to or download such schemes like designed font faces to implement designed text. However, it is also possible to natively build (building from scratch) such designed texts in an Android Project....
read more
Fetch Text From Editable TextField in Android Jetpack Compose
In Android, an EditText is a sub-class of TextView, a UI element used to take text input from the user. EditText is generally used to collect information from the user for storing details or giving inputs for performing a function. However, in Jetpack Compose, we have TextField to collect and display textual data....
read more