All Projects → csoni111 → StatusBarNotifier

csoni111 / StatusBarNotifier

Licence: MIT License
✉️ A new way to display the android notifications in the status bar.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to StatusBarNotifier

Taskly
Flutter app to manage tasks.
Stars: ✭ 126 (+281.82%)
Mutual labels:  notification
Graphical notifications Zabbix
No description or website provided.
Stars: ✭ 77 (+133.33%)
Mutual labels:  notification
cargo-testify
Watches changes in a rust project, runs test and shows friendly notification
Stars: ✭ 76 (+130.3%)
Mutual labels:  notification
janitor
Availability monitoring and alerting for IOT devices
Stars: ✭ 55 (+66.67%)
Mutual labels:  notification
React-MaterialUI-Starter-Kit
The ReactJs 16 start kit that include Redux, Material UI, Babel 7 and Webpack 4
Stars: ✭ 48 (+45.45%)
Mutual labels:  notification
PushMeBaby
iOS Push Notification Debug App. You can use this app during iOS Push Notification (development or production) to push notifications on your device from your Mac.
Stars: ✭ 47 (+42.42%)
Mutual labels:  notification
denbun
Adjust showing frequency of Android app messages, and to be more user friendly 🐦
Stars: ✭ 17 (-48.48%)
Mutual labels:  notification
react-awesome-notifications
A beautiful fully customizable React + Redux notification system built with styled-components
Stars: ✭ 29 (-12.12%)
Mutual labels:  notification
Achievement-Watcher
A sexy achievement file parser with real-time notification, automatic screenshot and playtime tracking. View every achievements earned on your PC whether it's coming from Steam, a Steam emulator, and more.
Stars: ✭ 331 (+903.03%)
Mutual labels:  notification
drone-wechat
drone wechat notification plugin
Stars: ✭ 13 (-60.61%)
Mutual labels:  notification
twsms
台灣簡訊 twsms api client
Stars: ✭ 16 (-51.52%)
Mutual labels:  notification
pr-reviews-reminder-action
A GitHub Action to send Slack/Teams notification for Pull Request that are waiting for reviewers.
Stars: ✭ 18 (-45.45%)
Mutual labels:  notification
ohd
Garage Door Monitor (OverHeadDoor) - Python3, Raspbian
Stars: ✭ 126 (+281.82%)
Mutual labels:  notification
flutter-push-notification-without-firebase
Flutter push notification without firebase with background services feature
Stars: ✭ 42 (+27.27%)
Mutual labels:  notification
Toast
To use it in PCL or .NetStandard projects write this line of code : CrossToastPopUp.Current.ShowToastMessage("Message");
Stars: ✭ 51 (+54.55%)
Mutual labels:  notification
purppura
A server for receiving and processing alerts & events.
Stars: ✭ 18 (-45.45%)
Mutual labels:  notification
spontit-api-python-wrapper
Send functional, flexible push notifications to iOS, Android, and desktop devices (without your own app or website).
Stars: ✭ 35 (+6.06%)
Mutual labels:  notification
toast-swift
A Swift Toast view - iOS 14 style and newer - built with UIKit. 🍞
Stars: ✭ 85 (+157.58%)
Mutual labels:  notification
frp-notify
一个专注于消息通知的 frp server manager plugin 实现,让你对进入 frps 的连接了如指掌,不再裸奔。
Stars: ✭ 44 (+33.33%)
Mutual labels:  notification
TTGNotificationGuard
Auto remove the observer from NSNotificationCenter after the oberser dealloc
Stars: ✭ 13 (-60.61%)
Mutual labels:  notification

Status Bar Notifier

Platform API License: MIT

A new way to flash your toast notifications in status bar.

StatusBarNotifier is an android library which enables you to pop up notification messages in android's status bar. You have options to set the text message, text color, display time, background color, auto hide etc.

This can be used in several places like in a chat application to show whenever a new user comes online or in a news app to flash the latest news while user is browsing or in an app that allows file downloading to show download complete/failed notification to the user etc. There can be so many use cases.

Screenshot

sample screenshot

Integration

This library is hosted on bintray and available on jcenter

repositories {
    jcenter()
}

Add this dependency to your build.gradle file:

implementation 'co.chiragm.sbn:library:0.0.1'

Usage Instructions

        // Build an instance of StatusBarNotifier
        final StatusBarNotifier statusBarNotifier = new StatusBarNotifier
                .Builder(this)
                .setAutoHide(true) // default true
                .setAutoHideDelayMillis(3000) // default 3000 ms (3 seconds)
                .build();

        // Set notification text and change colors
        statusBarNotifier.setText("Sample notification");
        statusBarNotifier.setBackgroundColor(ContextCompat.getColor(this, R.color.colorPrimaryDark));
        statusBarNotifier.getTextView().setTextColor(Color.WHITE);
        
        // Show status bar notification
        statusBarNotifier.show();

License

StatusBarNotifier is licensed under MIT license. View license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].