Android Articles

Found 1,250 articles

Difference between Android and Brew

Md. Sajid
Md. Sajid
Updated on 17-Mar-2026 535 Views

Android and BREW (Binary Runtime Environment for Wireless) are mobile operating systems that have been developed for smartphones and other mobile devices. While Android dominates the modern smartphone market, BREW was an important platform in the early mobile computing era, primarily targeting feature phones. What is Android? Google's Android is a widely used open-source mobile operating system first released in 2008. It has since become the dominant platform for smartphones, tablets, smartwatches, and other devices. Android is based on the Linux kernel and was designed primarily for touchscreen mobile devices, though it has been adapted to various form ...

Read More

Facts about Android Operating System

Arnab Chakraborty
Arnab Chakraborty
Updated on 17-Mar-2026 2K+ Views

Android Operating System is an open-source software platform that powers a variety of mobile devices, including smartphones, tablets, smartwatches, and smart TVs. Developed by Google, Android OS was first released in 2008 and has since become the most widely used mobile operating system globally. Android OS is known for its vast array of features, including Google integration, multitasking capabilities, and a wide range of apps available through the Google Play Store. History of Android OS Android Operating System has a rich history, dating back to 2003 when Android Inc. was founded by Andy Rubin, Rich Miner, Nick Sears, ...

Read More

Difference between Java and Kotlin in Android with Examples

Mahesh Parahar
Mahesh Parahar
Updated on 14-Mar-2026 365 Views

Kotlin was introduced for Android development as a modern alternative to Java, offering concise syntax, null safety, and many language-level improvements. Google announced Kotlin as the preferred language for Android development in 2019. Code Comparison Examples Kotlin reduces boilerplate code significantly compared to Java − Setting Text on a View // Java: requires casting and explicit reference TextView displayText = (TextView) findViewById(R.id.textView); displayText.setText("Hello World"); // Kotlin: concise with synthetic view binding textView.setText("Hello World") Null Safety // Kotlin enforces null check at compile time var value: String = "abc" ...

Read More

How to detect device is Android phone or Android tablet?

Azhar
Azhar
Updated on 07-Feb-2025 3K+ Views

In this article we will see, how we can detect the device is an Android phone or Android tablet. Here are the following steps for it.Detecting device is Android phone or Android tablet The following are the steps tp detect device is Android phone or Android tablet:Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main.xml.   Step 3 − Add the following code to src/MainActivity.java import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.os.Bundle; import ...

Read More

How to dynamically remove items from ListView on a click?

Nitya Raut
Nitya Raut
Updated on 18-Nov-2024 2K+ Views

This example demonstrate about How to dynamically remove items from ListView on a click Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main.xml.   In the above code, we have taken listview. Step 3 − Add the following code to src/MainActivity.java package com.example.myapplication; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.TextView; public class MainActivity extends Activity {  TextView textView;  ArrayAdapter adapter = null;  String[] ...

Read More

Recycler view item animate when scrolling in Android

Ankith Reddy
Ankith Reddy
Updated on 04-Mar-2024 2K+ Views

Before getting into Item animation for recycler view example, we should know what is Recycler view in android. Recycler view is a more advanced version of the list view and it works based on View holder design pattern. Using recycler view we can show grids and list of items. card view is extended by frame layout and it is used to show items in card manner. It supports radius and shadow as predefined tags. This example demonstrates how to integrate Animation in Recycler View with card view by creating a beautiful student records app that displays student name with age. ...

Read More

10 Best Android Development Courses in 2023

Satish Kumar
Satish Kumar
Updated on 26-Feb-2024 3K+ Views

Are you interested in Android development and want to learn how to create amazing mobile apps? Then, you’ve come to the right place. In this article, we’ll be exploring some of the best Android development courses available in 2023. Android is the most popular mobile operating system, with over 2 billion active users worldwide. Therefore, it's no surprise that the demand for skilled Android developers is on the rise. Learning Android development can lead to a rewarding and lucrative career, as well as giving you the opportunity to create innovative mobile apps that can change the world. So, without further ...

Read More

How to hack android phones with PhoneSploit?

Pranavnath
Pranavnath
Updated on 20-Oct-2023 3K+ Views

Introduction PhoneSploit is an open-source system for hacking Android devices utilizing pernicious apps. Whereas it has genuine employment for security examiners, its control too comes with moral dangers. This article looks at how the PhoneSploit system permits hacking Android gadgets, both in hypothesis and hone. We begin with an audit of the hypothetical setting behind versatile gadget abuse. At that point, we do a specialized jump into PhoneSploit design. At long last, we walk through the method of compromising an Android phone utilizing PhoneSploit to illustrate connected assault methods. What is PhoneSploit? PhoneSploit is a hostile security system created to illustrate Android powerlessness misuse. ...

Read More

Creating Text Detector in Android using Firebase ML Kit

Someswar Pal
Someswar Pal
Updated on 05-Oct-2023 625 Views

Introduction The Android Firebase ML Kit's text detection tool makes it easier to get text from an image, which helps apps like OCR, paper scanning, and augmented reality. This guide shows how to add a text analysis to Android apps. Setting up The Development Environment Set up an Android text detector to work with Firebase ML Kit by running Android Studio and creating a project. Here are steps shown below to do so. Installing Android Studio Downloading and installing Android Studio Setting up the Android SDK Configuring virtual devices for testing Creating a New Android Project Creating ...

Read More

Creating Language Translator in Android using Firebase ML Kit

Someswar Pal
Someswar Pal
Updated on 05-Oct-2023 593 Views

Introduction In today’s advanced civilization, language translation is important for communication. For ease, Android apps are used for the purpose as its handy and can be carried anywhere. Users can type or speak in these apps and choose the required language and the apps do the same for the users. In this article, we would be learning about how we can create a language translator in Android using Firebase ML kit. Introduction to the Firebase ML Kit for Language Translation Google’s firebase ML kit is one of the easiest and powerful tool for language translation. It supports both Android and ...

Read More
Showing 1–10 of 1,250 articles
« Prev 1 2 3 4 5 125 Next »
Advertisements