تا حالا شده در برنامه بخوایی از نوتیفیکشن استفاده کنی ، اما خیلی دردسر بکشی ؟ چجوری عکس بزاری براش ، چجوری ایکون بزاری و ...
این کتابخونه یک نوتیفیکیشن برات درست میکنه در یک خط :)
GitHub : https://github.com/halysongoncalves/Pugnotification
اضافه کردن :
compile 'com.github.halysongoncalves:pugnotification:1.8.1'
استفاده :
PugNotification.with(context) .load() .identifier(identifier) .title(title) .message(message) .bigTextStyle(bigtext) .smallIcon(smallIcon) .largeIcon(largeIcon) .flags(Notification.DEFAULT_ALL) .button(icon, title, pendingIntent) .click(cctivity, bundle) .dismiss(activity, bundle) .color(color) .ticker(ticker) .when(when) .vibrate(vibrate) .lights(color, ledOnMs, ledOfMs) .sound(sound) .autoCancel(autoCancel) .simple() .build();
Simple notification with just text and message.
PugNotification.with(context) .load() .title(title) .message(message) .bigTextStyle(bigtext) .smallIcon(R.drawable.pugnotification_ic_launcher) .largeIcon(R.drawable.pugnotification_ic_launcher) .flags(Notification.DEFAULT_ALL) .simple() .build();
Simple notification with progress.
PugNotification.with(context) .load() .identifier(identifier) .smallIcon(R.drawable.pugnotification_ic_launcher) .progress() .value(progress,max, indeterminate) .build();
PugNotification.with(context) .load() .identifier(identifier) .smallIcon(R.drawable.pugnotification_ic_launcher) .progress() .update(identifier,progress,max, indeterminate) .build();
نظرات (۰)