An Android library that takes the standard toast to the next level with many styling options. Style your toasts either by code or with a style in styles.xml. See examples below or try the demo app.
iconLeft()
andiconRight()
renamed toiconStart()
andiconEnd()
for RTL suppprt.- Support for the new Android Toast in API >=27 (Oero)
- Replaced
textFont
attribute withfont
instyles.xml
which is closer to SDK naming- Replaced
cornerRadius
attribute withradius
- Added Gravity support
- Define a style. All available attributes:
<style name="mytoast">
<item name="textBold">true</item>
<item name="textColor">#fff</item>
<item name="font">@font/retrofont</item>
<item name="textSize">14sp</item>
<item name="colorBackground">#fff</item>
<item name="solidBackground">true</item>
<item name="strokeWidth">3dp</item>
<item name="strokeColor">#fff</item>
<item name="iconStart">@drawable/ic</item>
<item name="iconEnd">@drawable/ic</item>
<item name="length">LONG</item> LONG or SHORT
<item name="gravity">top</item> top or center
<item name="radius">5dp</item>
</style>
- Pass your style in the static constructor and call
show();
and you're done!
StyleableToast.makeText(context, "Hello World!", R.style.mytoast).show();
or
StyleableToast.makeText(context, "Hello World!", Toast.LENGTH_LONG, R.style.mytoast).show();
new StyleableToast
.Builder(context)
.text("Hello world!")
.textColor(Color.WHITE)
.backgroundColor(Color.BLUE)
.show();
Add the depedency in your build.gradle
dependencies {
implementation 'com.muddzdev:styleabletoast:2.1.2'
}
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.