Add this in your root build.gradle
file (not your module build.gradle
file):
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add this to your module's build.gradle
file (make sure the version matches the JitPack badge above):
dependencies {
...
implementation 'com.github.subodhrathaur:CustomToastAndroid:0.2.2'
}
Each method always returns a Toast
object, so you can customize the Toast much more. DON'T FORGET THE show()
METHOD!
For default Toast:
CustomToast.makeText(context, "Default Toast", Toast.LENGTH_SHORT,CustomToast.DEFAULT).show();
For success Toast:
CustomToast.makeText(context, "Success Toast", Toast.LENGTH_SHORT,CustomToast.SUCCESS).show();
For Confusing Toast:
CustomToast.makeText(context, "Confusing Toast", Toast.LENGTH_SHORT,CustomToast.CONFUSING).show();
For error Toast:
CustomToast.makeText(context, "Error Toast", Toast.LENGTH_SHORT,CustomToast.ERROR).show();
For info Toast:
CustomToast.makeText(context, "Info Toast", Toast.LENGTH_SHORT,CustomToast.INFO).show();
For warning Toast:
CustomToast.makeText(context, "Warning Toast", Toast.LENGTH_SHORT,CustomToast.WARNING).show();
Please click the image below to enlarge.
Copyright 2019 Subodh Kumar
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License 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.