This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tuesday, May 14, 2013

Impossible Triangle Vector photoshop

Impossible Triangle



Try to Make A Impossible Triangle Vector,
I use Photoshop to Create this..

Monday, April 16, 2012

How to Create Notifcication on Android

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 mBuilder;
 
 public static void main(String[] args)
 {
 
 }
 public void NotificationClass()
 {}
 public void setNotification(Context context,Class IntentClass,String Title,String Content,int NotificationIdFlag)
 {
  // Build notification
    // Actions are just fake
    mBuilder =new NotificationCompat.Builder(context)
         .setSmallIcon(R.drawable.ic_launcher)
         .setContentTitle(Title)
         .setContentText(Content);
    
    mNotificationId=NotificationIdFlag;
    intent = new Intent(context, IntentClass);
    PendingIntent pIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    
    notificationManager = 
      (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    
    
    
    
    mBuilder.setContentIntent(pIntent);
    
    
  
 }
 
 public void show()
 {
  // Must THrow in Exception
  try {
   notificationManager.notify(mNotificationId, mBuilder.build());
   //Service Onl
   //  runningService();
  } catch (Exception e) {
   e.printStackTrace();
   // TODO: handle exception
  }
  
 }
}

and then you can call notification class like this :
NotificationClassI=new NotificationClass();
  
  I.setNotification(getApplicationContext(),NotificationReceiverActivity.class,"Notification title","Notification Content",1);
  
  I.show();