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.foolchen:StyleableToast:1.0.3'
}
dependencies {
implementation("com.github.foolchen:StyleableToast:1.0.3")
}
<dependency>
<groupId>com.github.foolchen</groupId>
<artifactId>StyleableToast</artifactId>
<version>1.0.3</version>
</dependency>
libraryDependencies += "com.github.foolchen" % "StyleableToast" % "1.0.3"
:dependencies [[com.github.foolchen/StyleableToast "1.0.3"]]
An Android library that takes the standard Android Toast to the next level with a variety of styling options that gives your app and user experience that little extra unique feeling! Style your toast either by code or in styles.xml!
<a href="https://github.com/Muddz/StyleableToast/raw/master/sample.apk">Download the sample .apk: </a>
1) Style your toast in styles.xml. All available attributes:
<style name="StyledToast">
<item name="android:textColor"></item>
<item name="android:textStyle"></item> only bold!
<item name="android:fontFamily"></item> For custom fonts just add the path -> fonts/myfont.ttf
<item name="android:colorBackground"></item>
<item name="android:strokeWidth"></item> API 21+
<item name="android:strokeColor"></item> API 21+
<item name="android:radius"></item> radius for corners of the toast shape
<item name="android:alpha"></item> value between 0-255 where 255 is full solid
<item name="android:icon">/</item> drawable id of the icon. R.drawable.xx
</style>
2) Pass your style resource in the constructor and call show(); and you're done!
StyleableToast.makeText(context, "Saving profile", Toast.LENGTH_LONG, R.style.StyledToast).show();
StyleableToast st = new StyleableToast(this, "Updating profile", Toast.LENGTH_SHORT);
st.setBackgroundColor(Color.parseColor("#ff5a5f"));
st.setTextColor(Color.WHITE);
st.setIcon(R.drawable.ic_autorenew_black_24dp);
st.spinIconAnimation();
st.setMaxAlpha();
st.show();
st = new StyleableToast
.Builder(this, "Turn off fly mode")
.withBackgroundColor(Color.RED)
.withTextColor(Color.WHITE)
.withBoldText()
.build();
Add the depedency in your build.gradle. The library is distributed via jCenter
dependencies {
compile 'com.muddzdev:styleabletoast:1.0.7'
}
Copyright 2017 Muddii Walid (Muddz)
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.