Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Pugnotification

 Pugnotification

Apresentação realizada no meetup de Android

Avatar for Halyson Lima Gonçalves

Halyson Lima Gonçalves

October 28, 2015
Tweet

More Decks by Halyson Lima Gonçalves

Other Decks in Technology

Transcript

  1. Notificações •  Mensagem que pode ser exibida ao usuário fora

    da UI normal do aplicativo. •  Permite que os usuários se matenham informados sobre eventos relevantes e imediatos. •  Um canal de notícias. •  Possuem diretrizes.
  2. Notificação simples NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this) .setSmallIcon(R.drawable.notification_icon) .setContentTitle("My notification")

    .setContentText("Hello World!"); mBuilder.setContentIntent(resultPendingIntent); NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); mNotificationManager.notify(mId, mBuilder.build());