bayan1987 / StyleableToast

A powerful Android library that takes the standard toast to the next level with many styling options

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android StyleableToast

APK LICENSE

An Android library that takes the standard toast to the next level with many styling options. Style your toasts either by code or define styles in styles.xml. See examples below or try the demo app.

Release notes

Version 2.0.2

  • Int arguments for cornerRadius(int radius) and stroke(int width) is now converted to DIP by the library

Version 2.0.1 - Important! Read changes from 1.0.9 before updating to a 2.x.x version

  • Replaced alpha() with solidBackground()
  • Replaced strokeWidth() and strokeColor() with stroke(width,color)
  • Removed getToast() and build()
  • Removed 4 lines text limit
  • Added iconLeft() & iconRight()
  • Added textSize()
  • Deprecated typeface() Use font() with the new Font api in Android 8 -> R.font.xx
  • Added new custom styles.xml attribute. See below!
  • Added new makeText() constructor without length parameter
  • Adjusted the default paddings and values for the toast
  • Over all refactoring

Cases:

Example with a style from styles.xml

  1. Define a style. All available attributes:
    <style name="mytoast">
        <item name="textBold">true</item>
        <item name="textColor">#fff</item>
        <item name="textFont">@font/dosier</item>
        <item name="textSize">14sp</item>
        <item name="colorBackground">#fff</item>
        <item name="solidBackground">true</item>
        <item name="strokeWidth">3dp</item>     API 21+
        <item name="strokeColor">#fff</item>    API 21+
        <item name="iconLeft">@drawable/ic</item>
        <item name="iconRight">@drawable/ic</item>
        <item name="length">LONG</item>         ENUM: LONG | SHORT
        <item name="cornerRadius">5dp</item>
    </style>
  1. Pass your style in the static constructor and call show(); and you're done!
    StyleableToast.makeText(context, "Hello World!", R.style.mytoast).show();

Example with builder pattern:

        new StyleableToast
                .Builder(context)
                .text("Hello world!")
                .textColor(Color.WHITE)
                .backgroundColor(Color.BLUE)
                .show();

Installation

Add the depedency in your build.gradle

dependencies {
    implementation 'com.muddzdev:styleabletoast:2.0.2'   
}

License

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.

About

A powerful Android library that takes the standard toast to the next level with many styling options

License:Apache License 2.0


Languages

Language:Java 100.0%