Monday, April 16, 2012
How to Create Notifcication on Android
11:18 PM
1 comment
How to Create Notification in Android?
It;s really simple way to do it.. Just create this Notification Class
NotificationClass.class
package com.example.mydoproject;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;
import android.text.style.SuperscriptSpan;
public class NotificationClass{
private static Intent intent;
NotificationManager notificationManager ;
int mNotificationId ;
NotificationCompat.Builder...