Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.ligi:loadtoast:1.0.10'
}
dependencies {
implementation("com.github.ligi:loadtoast:1.0.10")
}
<dependency>
<groupId>com.github.ligi</groupId>
<artifactId>loadtoast</artifactId>
<version>1.0.10</version>
</dependency>
libraryDependencies += "com.github.ligi" % "loadtoast" % "1.0.10"
:dependencies [[com.github.ligi/loadtoast "1.0.10"]]
This is a fork that is able to work with espresso-tests and usage vector-images instead of raster-images. You can get it via jitpack:
The default toasts are ugly and don't really provide much more than a short message. This small library provides a better toast which will give the user feedback by morphing into a checkmark or cross (success and fail). The lifetime of the toast is completely controlled by you.

dependencies {
compile 'net.steamcrafted:load-toast:1.0.10'
}
The API is very simple, create a new toast by providing a context:
LoadToast lt = new LoadToast(context);
Change the displayed text:
lt.setText("Sending Reply...");
If you don't have a message to display, the toast will shrink to only show the circular loader.
Then proceed to show the toast:
lt.show();
When your background thingy is done provide feedback to the user and hide the toast:
// Call this if it was successful
lt.success();
// Or this method if it failed
lt.error();
If you are using translucent actionbar in a full screen activity it will appear over the actionbar, fortunately there is a method to change the y translation:
lt.setTranslationY(100); // y offset in pixels
You can also change the colors of the different toast elements:
lt.setTextColor(Color.RED).setBackgroundColor(Color.GREEN).setProgressColor(Color.BLUE);
These can be chained as you can see.
#License
Released under the Apache 2.0 License