Featured
-
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
An Overview of Android Activity - Video Tutorial
As far as Android platform is concerned, the funda
by amit.rai -
How to get IMEI number,serial number and software version of your phone
Hello... Sometimes we need to know the country
by shahbaz.ahmmod -
Search location by using place on google map
Here below is the code for searching places by usi
by shahbaz.ahmmod -
How to know free space in sdcard android
I have written code to know free space in sdcard
by shahbaz.ahmmod
Tags
Learn How to Create Multiple Activities in Android - 8 Minutes [Video Tutorial for Beginner]
In this Android Video Tutorial, I am giving giving a simple and basic demonstration on activity and layout creation.
I have also mentioned activities deceleration in the manifest and also how we make the particular activity as launcher ac...
How To Send Email in Android?
Hello Everyone !!
In Android, Intent.ACTION_SEND can be used to send an email and we do not require to make an email client for it but we can use the existing clients. If there is no client for this action, The system will display the&nbs...
How to share image that was loaded from a remote url?
Hello Nerds, This tutorial is for forwarding/sharing image from one application to other which was loaded from a remote url. Assuming that you have loaded an image from remote url and displayed it in your ImageView. The basic procedure is by taki...
How to update/refresh device gallery after adding new images
In some of the devices while uploading/adding new image into media are not shown to the custom gallery view. However this does not seem to update until the device reboots. To update your custom gallery with new images, below few lines of code wil...
Auto-Reply to Texts Messages on Android device When Youre Busy
In certain cases, we are busy with some work and we don't have free time to reply our device incoming text messages. In that case, you will send an auto-reply message to all the incoming messages about your situation which goes something like...
AppResover
AppResolver
Introduction :-
AppResolver library is designed for resolving the needs of opening links to their respective application.
Uses :-
This Library can be used for opening different app links and webpages to their respective appl...
How to start an Activity with Shared Element Transition Animation
A view that moves from one activity to another in a smooth motion is possible with the help of Shared Element Transition. Its a type of animation when user clicks on certain view in one activity the view smoothly expands to the next activity. Whe...
How to create BigPictureStyle Notification in Android
To show large-format notifications in android notification bar similar like Flipkart, Mobikwik, Paytm applications. The style of large icon notification bar is called BigPicturestyle Notifications. Mostly the BigPicturestyle Notification is used...
How to pass value from one Activity to Another through Bundle Intent?
1)Suppose need to pass value from MainActivity to SubActivity.We will first make xml of both Activity:
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android....
How to get Exact path of a photo saved in Mobile Gallery?
1)Suppose we have a Button and a TextView in XML:
activity_main.xml
<Button
android:id="@+id/btnGet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GET IMAGES" />
<TextVi...
There is an Application to Receive the Intent or not in Android
Hi friends,
For Implicit intent, we dont need to declare the name of the class but we declare the action that we are doing to perform.
Like here we make a call
Uri callUri = Uri.parse("tel:100");
Intent intent = new Intent(Intent.AC...
How to open a Url using Intent
To open a url using Intent, first create a button on the layout. And set the onClickListener on the button and open the browser using implicit Intent, like below:-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivit...
Parcelable vs Serializable
If we want to send some data over the network or from one place to another place then we have to serialize it first using Serialization in java. Serialization is a process of Marshalling and Unmarshalling of data. Basically the conversion of Obje...