Android Articles

Page 7 of 125

How to parse the AndroidManifest.xml file inside an .apk package

Vaibhav Ahire
Vaibhav Ahire
Updated on 09-May-2023 2K+ Views

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

How to open the Google Play Store in an Android app?

Vaibhav Ahire
Vaibhav Ahire
Updated on 09-May-2023 1K+ Views

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

How to listen for incoming SMS messages in Android?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 11K+ Views

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

How to launch Google Maps Directions via an intent on Android?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 2K+ Views

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

How to integrate PayPal in an Android app?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 3K+ Views

Introduction We can get to see different payment gateways used within any android application for collecting payments from the application users for providing the specific services such as Paytm, Razorpay, Paypal and many others. In this article we will take a look on How to integrate PayPal in an 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 will create an edit text which is used to enter the amount for which the user has to make payment and a ...

Read More

How to implement the Drag and Drop functionality over a Recycler View in an Android App ?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 942 Views

Many times in an android application we can get to see the data is being displayed in the form of a list such as in task tracker application we can get to see different types of tasks arranged in the form of a list in a specific order. Now inside those applications we can change the priority of tasks by simply changing their priority. We will add the task with highest priority at the top. So we can simply drag and drop that task to the top most position. So in this way Drag and Drop functionality is used for ...

Read More

How to implement my own URI scheme on Android?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 2K+ Views

Introduction When we have to connect our android application to other applications or websites we can use URI (Uniform Resource Identifier) to connect. In this article we will take a look on How we can create a URI scheme for our android application. Implementation We will be creating a simple application in which we will be displaying two text views. First text view we will be using to display the heading of our application. We will be using a second text view for displaying the data to be passed through our URL. Step 1 : Creating a new project in ...

Read More

How to implement document scanning functionality in Android?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 2K+ Views

Introduction In many android applications we can get to see that document scanner functionality is present in it in which the application takes the photo of the document and crops the image of that document from all sides based on the requirement and displays that document in the form of image. We can also add filters to that image such as black and white and others. In this article we will take a look on How to implement document scanning functionality in Android ? Implementation We will be creating a simple application in which we will be displaying a text ...

Read More

How to define a GUI layout using XML files in Android?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 608 Views

Introduction GUI (Graphical User Interface) of any android application lets users interact with the various functionalities of android applications. The GUI is the main part of the application which is visible to the user. GUI of any android applications can be designed in several different ways such as using XML, Dart, Kotlin and many more. In this article we will take a look at How to define a GUI layout of an android application using XMl files. Implementation We will be creating a simple application in which we will be creating a text view for displaying the heading of our ...

Read More

How to create a custom shaped bitmap marker with Android maps API?

Vaibhav Ahire
Vaibhav Ahire
Updated on 08-May-2023 954 Views

Introduction Many android applications nowadays use Google Maps within it to display the map to the users. For example we use many food delivery applications in which we can get to see our order status along with the location of the delivery boy on Google Maps. We can get to see different types of markers on each of the application depending on their use case. In this article we will take a look on How to create a custom shaped bitmap marker with android maps API? Implementation We will be creating a simple application in which we will be displaying ...

Read More
Showing 61–70 of 1,250 articles
« Prev 1 5 6 7 8 9 125 Next »
Advertisements