- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1922 Articles for Apps/Applications

Updated on 08-May-2023 15:36:02
Introduction Many times in android applications we get to see that the app reads sms from the users mobile device and displays that within the application. Such as when we are creating an sms application we display the sms from users mobile device within our application. In this article we will take a look on How can i read sms messages from the device programmatically in Android. Implementation We will be creating a simple application in which we will be creating a text view in which we will be displaying the heading of the application. After that we will be ... Read More 
Updated on 08-May-2023 15:31:15
Many times in android applications we have to explain to the user about the step by step guide for performing a certain task within an application such as How to book a service which is being provided within our application. For that we have to display a detailed guide on this in the form of flow layout. In this article we will take a look on How to create something like a Flow Layout in Android. Implementation We will be creating a simple application in which we will be displaying a simple text view. After creating this text view we ... Read More 
Updated on 08-May-2023 15:27:34
Introduction Many times while launching a specific screen for an android application, we have to check the orientation of the device whether the device is in portrait mode or a landscape mode. In this article we will take a look at How we can check if the Android phone is in Landscape mode or a portrait mode. Implementation We will be creating a simple application in which we will be displaying two text views. First text view we will be using it to display the heading of our application. In the second text view we will be displaying the ... Read More 
Updated on 08-May-2023 15:23:21
Introduction Frame Layout and Absolute Layout are two different layouts used for developing an Android application. Frame layout is simply used to display a single child view in a stacked layout, where UI elements are placed on top of each other in a stacked manner. It is similar to that of Relative Layout which is used to display multiple UI Elements. Whereas Absolute Layout is used to specify the exact location of elements on the screen. Absolute Layout is less flexible to maintain different screen sizes. What is Frame Layout in Android? Frame Layout is a View Group class which ... Read More 
Updated on 08-May-2023 15:10:20
What is Context in Android? A Context gives us information about the current state of an application. It allows us to interact with Android Components. It allows us to access files and other resources such as pictures, Activities, Fragments and Services. In Android getContext(), getApplicationContext(), getBaseContext(), this are the methods to retrieve different types of Context objects. The Context Class provides access to several resources and services that are needed to build an Android application including − Resources − The resources such as layouts, images and strings which are stored in resource objects are accessed through the Context. System ... Read More 
Updated on 08-May-2023 15:06:47
Introduction FragmentPager Adapter and FragmentStatePager Adapter are the two different classes which are used to implement the Pager Adapter within an android application. This pager adapter is used when working with Android’s ViewPager. These pager adapters are responsible for managing the lifecycle of each page which is being displayed within the view pager. The common thing between both of these adapters is that they are the subclass of the PageAdapter class. In this article we will take a look at the Difference between Fragment Pager Adapter and Fragment State Pager Adapter. What is an Adapter in Android? An Android Adapter ... Read More 
Updated on 08-May-2023 15:04:12
Introduction First of all before changing an API (Application Programming Interface) Version we have to know what Android API is and what is its use. An Android API in an Application Program Interface which allows us to add specific functionality to our Android application. In simple language Android API are the set of tools used for developing Android Application. The API version is used by developers to ensure their applications are compatible with the current version of the Android operating system. It is also used by Android phones to determine which applications are compatible with their device. The API version ... Read More 
Updated on 08-May-2023 15:01:55
Introduction In many android applications nowadays we can get to see the application asks for permission to use a specific feature during runtime. For example the application which uses a device camera asks for camera permission during the runtime of the application, from that user can provide or reject the permission. In this article we will take a look on How to add Runtime permissions within our android application. Implementation We will be creating a simple application in which we will be creating a text view for displaying the heading of our application. After that we are creating a button ... Read More 
Updated on 05-May-2023 11:07:13
GPS stands for Global Positioning System which was initially created for military usage. The first fully functional GPS was in 1995 in the US and was then included in vehicles in 1996. It is nothing but a group of satellites that revolves around the earth and recursively send messages to the earth's surface which are received by various devices to calculate the optimized location of the receiving device, this calculation requires information from at least 4 satellites which includes the coordinate positions and clock deviations. This is known as space technology. It is implemented everywhere on the earth without 100% ... Read More 
Updated on 05-May-2023 10:48:32
The Adhoc network is a wireless link connected without any fixed infrastructure or infrastructures. Communication is established instantly whenever needed. The node access each other in the network without a base station or fixed station access point. Also, the network is distributed in the local area network. Each node uses radio waves to communicate with each other. Eg:- WLAN, GSM, etc. In a multi-hop distributed architecture, the terminals are connected. The nodes operate for routing, securing, key management, and addressing in an ad-hoc wireless network that does not have a centralized system. The transmission occurs through intermediate nodes from the ... Read More Advertisements