Using NotificationManager in ANDROID for showing notification, sample code.
Multiple Notifications are a unique feature in ANDROID phones. This tutorial will show you how to create notification from your application. ANDROID uses the NotificationManager class to create the...
View ArticleSend Data when Clicking on a Notification in Android?
Hello everyone… I have shown in my previous tutorials on how to create notification in android and cancel it. This is the post showing this . Now today I am going to show how to send data when you...
View ArticleHow will you create a custom Notification in Android with a custom Layout?
This sample application does that. First create an xml for your notification. custom_notification.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"...
View ArticleHow to find your Google Plus ID
This is so simple 1. Go to your Google + account (https://plus.google.com/). 2. Click on the Profile icon on the Left. 3. If you look at the URL in the address bar, it should look something like this:...
View ArticleShow Download Progress in NotificationBar in Android with Notification Event...
Below Sample code shows you how to download images from a url with progress in the notification bar. package com.coderzheaven.customnotificationdownloaddemo; import java.io.File; import...
View ArticleCreate Custom Notification in Android.
This demo explains how you can create a Custom Notification in Android old and New versions. The notification appears expanded in Versions > 16. Let’s jump into the code… Below is the MainActivity...
View ArticleAdding Notifications, Reading Notifications, Getting number of notifications...
This demo will show how to 1. Create and add a new Notification, 2. How many notifications are active in the current Application? 3. Delegate method for Notification Deletion. For Adding a Notification...
View Article