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

[Wojtek Kalicinski] Android Wear UX at a glance

[Wojtek Kalicinski] Android Wear UX at a glance

Presentation from GDG DevFest - the biggest Google related event in Ukraine. October 24-25, Lviv. Learn more at http://devfest.gdg.org.ua/

Google Developers Group Lviv

October 25, 2014
Tweet

More Decks by Google Developers Group Lviv

Other Decks in Programming

Transcript

  1. Notification notif = new NotificationCompat .Builder(mContext) .setContentTitle( "New mail from

    " + sender.toString()) .setContentText(subject) .setSmallIcon( R.drawable.new_mail) .extend(new NotificationCompat.WearableExtender() .setContentIcon(R.drawable.new_mail)) .build(); NotificationManagerCompat .from(mContext).notify( 0, notif);