- Android Custom Toast notification with different colors.
- Toast of Normal, Info, Success, Warning, Error.
- Each Toast have diffrent color and icon.
- Simple and Easy to Use
Demo App - Click here
- Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the dependency
dependencies {
implementation 'com.gitlab.manimaran:toastutils:v1.0'
}
- Inside Java Code
// Short
ToastUtils.showShort(getApplicationContext(), "Short Toast");
// Long
ToastUtils.showLong(getApplicationContext(), "Long Toast");
// Custom
ToastUtils.showCustom(getApplicationContext(), "Custom Toast for 3sec", 3000); // 3sec - duration
// Info - Short
ToastUtils.showInfoShort(getApplicationContext(), "Info Toast - Short");
// Success - Short
ToastUtils.showSuccessShort(getApplicationContext(), "Success Toast - Short");
// Warning - Short
ToastUtils.showWarningShort(getApplicationContext(), "Warning Toast - Short");
// Error - Short
ToastUtils.showErrorShort(getApplicationContext(), "Error Toast - Short");
// Info - Long
ToastUtils.showInfoLong(getApplicationContext(), "Info Toast - Long");
// Success - Long
ToastUtils.showSuccessLong(getApplicationContext(), "Success Toast - Long");
// Warning - Long
ToastUtils.showWarningLong(getApplicationContext(), "Warning Toast - Long");
// Error - Long
ToastUtils.showErrorLong(getApplicationContext(), "Error Toast - Long");
// Info - Custom
ToastUtils.showInfoCustom(getApplicationContext(), "Info Toast - Custom for 3sec", 3000);
// Success - Custom
ToastUtils.showSuccessCustom(getApplicationContext(), "Success Toast - Custom for 3sec", 3000);
// Warning - Custom
ToastUtils.showWarningCustom(getApplicationContext(), "Warning Toast - Custom for 3sec", 3000);
// Error - Custom
ToastUtils.showErrorCustom(getApplicationContext(), "Error Toast - Custom for 3sec", 3000);