#android
Read more stories on Hashnode
Articles with this tag
A style is a collection of attributes that specifies the appearance for a single View. A style can specify attributes such as font color, font size,...
Sending an SMS Message in Android SMS Manager is a class in Android that is used to send SMS to a specific contact from the Android application. But...
In this article, we will learn how to pass data between different mobile screens in Android. Sharing Data b/w Activities Sending Data from Activity...
Introduction A fragment is a small reusable piece of activity that is hosted by an activity. However, they are different from normal activities & have...
Arrays A data structure that holds a fixed number of values of the same type or its subtypes. The most common type of array in Kotlin is the...
Classes Class is a group of similar entities and can be defined using the class keyword in Kotlin. class Person { /*...*/ } Objects (i.e. instances)...