toast的封装,包括单例化,成功和失败的提示吐司,解决小米手机不弹出吐司的坑爹问题.
此库不再维护,新库地址请看: https://github.com/hss01248/ToastFinal
1.可以选择使用系统toast还是自定义队列的toast.在init方法里指定就可以了.
2.兼容小米手机,处理了其toast不可见的问题: miui8以下,使用自定义队列的toast, miui8以上,使用系统吐司.
3.提供了成功和失败的两个自定义ui的吐司.这两个状态吐司会按指定时长显示.(默认short)
拷贝demo中提供的包装类MyToast来使用,作为包装层,
避免直接使用库内部的类(ToastUtil和CustomToastUtil).
Step 1. Add the JitPack repository to your build file
gradle
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Step 2. Add the dependency
dependencies {
compile 'com.github.glassLake:MyToast:1.0.1'
}
Application初始化时传入相应参数:
init(@NonNull Application context, @NonNull Handler mainHandler, boolean isDebugMode,boolean isUseCustomToast)
showToast(String text)
cancelToast()
showDebugToast( String text)
showLongToast( String text)
showSuccessToast(String text)
showFailToast(String text)
带有阴影效果