All Projects → murielK → AckBar

murielK / AckBar

Licence: other
AckBar is a very lightweight and customizable android library to display brief message to user.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to AckBar

Noty
A simple library for creating animated warnings/dialogs/alerts for Android.
Stars: ✭ 136 (+871.43%)
Mutual labels:  toast, snackbar
Flash
⚡️A highly customizable, powerful and easy-to-use alerting library for Flutter.
Stars: ✭ 174 (+1142.86%)
Mutual labels:  toast, snackbar
Notistack
Highly customizable notification snackbars (toasts) that can be stacked on top of each other
Stars: ✭ 2,562 (+18200%)
Mutual labels:  toast, snackbar
Android Appmsg
In-layout notifications. Based on Toast notifications and article by Cyril Mottier (http://android.cyrilmottier.com/?p=773).
Stars: ✭ 1,384 (+9785.71%)
Mutual labels:  toast, snackbar
xxy
xxy xxy.js alert 移动端弹窗 弹窗 上拉加载 下拉刷新 移动端UI 轮播 banner
Stars: ✭ 84 (+500%)
Mutual labels:  popup-window, toast
Livesmashbar
An elegant looking and easy to use informative library with LiveData integration for Android.
Stars: ✭ 107 (+664.29%)
Mutual labels:  toast, snackbar
Xpopup
🔥XPopup2.0版本重磅来袭,2倍以上性能提升,带来可观的动画性能优化和交互细节的提升!!!功能强大,交互优雅,动画丝滑的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup for Android,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With built-in animators , very easy to custom popup v…
Stars: ✭ 6,106 (+43514.29%)
Mutual labels:  popup-window, popupwindow
Devutils
🔥 ( 持续更新,目前含 160+ 工具类 ) DevUtils 是一个 Android 工具库,主要根据不同功能模块,封装快捷使用的工具类及 API 方法调用。该项目尽可能的便于开发人员,快捷、高效开发安全可靠的项目。
Stars: ✭ 680 (+4757.14%)
Mutual labels:  toast, snackbar
WechatPopupWindow
高仿微信聊天界面长按弹框样式
Stars: ✭ 71 (+407.14%)
Mutual labels:  popup-window, popupwindow
Snackbar
A tiny browser library for showing a brief message at the bottom of the screen (1kB gzipped).
Stars: ✭ 224 (+1500%)
Mutual labels:  toast, snackbar
Androidutilcode
AndroidUtilCode 🔥 is a powerful & easy to use library for Android. This library encapsulates the functions that commonly used in Android development which have complete demo and unit test. By using it's encapsulated APIs, you can greatly improve the development efficiency. The program mainly consists of two modules which is utilcode, which is commonly used in development, and subutil which is rarely used in development, but the utils can be beneficial to simplify the main module. 🔥
Stars: ✭ 30,239 (+215892.86%)
Mutual labels:  toast, snackbar
Popupwindow
PopupWindow is a simple Popup using another UIWindow in Swift
Stars: ✭ 401 (+2764.29%)
Mutual labels:  popup-window, toast
Sneaker
A lightweight Android library for customizable alerts
Stars: ✭ 928 (+6528.57%)
Mutual labels:  toast, snackbar
Vuetify Toast Snackbar
Basic Vue toast service that uses Vuetify Snackbar component.
Stars: ✭ 123 (+778.57%)
Mutual labels:  toast, snackbar
React Toastify
React notification made easy 🚀 !
Stars: ✭ 8,113 (+57850%)
Mutual labels:  toast, snackbar
React Toast Notifications
🍞 A toast notification system for react
Stars: ✭ 2,103 (+14921.43%)
Mutual labels:  toast, snackbar
Smart Show
Toast & Snackbar & TopBar & Dialog
Stars: ✭ 430 (+2971.43%)
Mutual labels:  toast, snackbar
Cookiebar
CookieBar is a lightweight library for showing a brief message at the top or bottom of the screen.
Stars: ✭ 497 (+3450%)
Mutual labels:  toast, snackbar
React Native Smart Tip
🔥🔥🔥Toast , SnackBar , Modal , Show Toast above Modal
Stars: ✭ 198 (+1314.29%)
Mutual labels:  toast, snackbar
BalloonPopup
Forget Android Toast! BalloonPopup displays a round or squared popup and attaches it to a View, like a callout. Uses the Builder pattern for maximum ease. The popup can automatically hide and can persist when the value is updated.
Stars: ✭ 32 (+128.57%)
Mutual labels:  popup-window, toast

AckBar

AckBar is simple, lightweight and customizable Android library to display in-app notifications.

  • Show a notification on top of the screen for a fixed period of time or make it sticky
  • Queue notification
  • Add action to your notification
  • Add an additional message body to your notification
  • Customize the notification color

How to

create your AckBar object:

final AckBar ackBar = AckBar.make(MainActivity.this, R.string.test_1, android.R.color.black, 5000);

@optional set a message body

ackBar.setMsg(R.string.test_1_msg);

@optional set an action

 ackBar.setAction(new Runnable() {
  @Override
  public void run() {
     Toast.makeText(MainActivity.this, "Action", Toast.LENGTH_LONG).show();
  }
 });

show

ackBar.show();

dismiss

ackBar.dismiss();

Download

add jcenter repo on your root build.gradle file

allprojects {
    repositories {
           jcenter()
    }
}

now add the dependency on your project build.gradle file

compile 'com.murielkamgang:AckBar:1.0.5'

Screenshots

GIF Logo Logo Logo

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the 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].