- 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 09-May-2023 12:05:52
Introduction The multimedia messaging service is a great way to send images and other media files along with text to different contacts over the phone. If you are looking to send images to your contacts then MMS is a great way to send this to your friends and family. In this article we will take a look at How to send images via MMs in ANdroid. 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 will be creating an image view in ... Read More 
Updated on 09-May-2023 12:02:05
Introduction In android devices the most useful feature is to store and read the files within the device storage or an external storage. This allows users to expand their device storage capacity so that they can store and retrieve files according to their convenience and can use them accordingly. In this article we will take a look at How to save files on external storage in Android. 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 will be creating an edit text field ... Read More 
Updated on 09-May-2023 11:56:27
Introduction Many times while building an android application we have to store data in the form of files within our android application. We will read and write string data inside our file. In this article we will take a look on How to Read/Write string from a file in Android Implementation We will be creating a simple application in which we will be firstly writing the data in that file which the user can enter through edit text. After that we will be reading the data stored in that file by clicking a button and displaying that within our text ... Read More 
Updated on 09-May-2023 11:45:03
Introduction Many times we have seen a case while developing an android application that we have set the same style for multiple views across our application. We have seen writing the code to set the style multiple times. To reduce the code duplication and optimization of our code we can create the style for a specific view in our styles.xml file and set that style to our view programmatically. In this article we will take a look on How to programmatically set the style attribute in a view on Android. Implementation We will be creating a simple application in which ... Read More 
Updated on 09-May-2023 10:31:57
Introduction Many times in android applications we can get to see when the user changes the screen orientation of the device from portrait to landscape. In that case we can get to see that some of the views within the application loses its state. For example when a user enters any data in a text file and then changes the screen orientation from portrait to landscape, in that case the data which is already entered gets cleared up. To prevent this we have to store the state of that view. In this article we will take a look on How ... Read More 
Updated on 09-May-2023 10:27:49
Introduction Android is an open-source operating system which is based on the linux kernel which is developed by Google. There are several ways which we can use to parse the data within our android application such as JSON parsing, xml parsing and many more. For parsing of the XML file SAX parser is used. In this article we will take a look at How to parse XML using SAX parser in Android. 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 ... Read More 
Updated on 09-May-2023 10:21:49
Introduction Android application package also referred as .apk file is generally installed on a mobile device which helps to run the android application on a mobile device. This apk file is a zip file which contains the application code, resources and a manifest file. AndroidManifest.xml file is considered as one of the most important files of any android application package (apk). It contains essential metadata of any application such as application’s name, version, permissions which are provided in the application to be requested for the user to use the application and many more. In this article we will take a ... Read More 
Updated on 09-May-2023 10:12:00
Introduction Many times in android applications we can see that OTP received for user authentication is detected automatically and it is added within the application automatically. Users don't have to add the otp manually. This can be done in android applications with the help of broadcast receivers. In this article we will take a look on How to listen for incoming sms messages in android application Implementation We will be creating a simple application in which we will be displaying two text views. First text view is for displaying the heading of our application. Second text view we will be ... Read More 
Updated on 08-May-2023 17:10:03
Introduction Many times in android applications we can see that OTP received for user authentication is detected automatically and it is added within the application automatically. Users don't have to add the otp manually. This can be done in android applications with the help of broadcast receivers. In this article we will take a look on How to listen for incoming sms messages in android application Implementation We will be creating a simple application in which we will be displaying two text views. First text view is for displaying the heading of our application. Second text view we will be ... Read More 
Updated on 08-May-2023 17:05:30
Introduction Many times in android applications the address to the specific store or a location is being displayed in the form of an icon. On clicking on that google map icon the application redirects us to the Google Maps application in which we will get to see the route from users location to the stores location. In this article we will take a look on How to launch Google Maps Directions via an intent on Android. Implementation We will be creating a simple application in which we will be creating a text view for displaying the heading of our application. ... Read More Advertisements