Skip to content

Just another custom Android Toast 🍞 but We have Butter and Jam 😍

Notifications You must be signed in to change notification settings

naseemakhtar994/EasyToast

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

12 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

EasyToast

Just another custom Android Toast 🍞 but We have Butter and Jam 😍

API

Toasts with Butter and Jam

Usage

Gradle

1 Add it in your root build.gradle at the end of repositories

    allprojects {
	    repositories {
		    maven { url 'https://jitpack.io' }
	    }
    }

2 Add the dependency

  dependencies {
      compile 'com.github.IsPra94:EasyToast:1.0.0'
    }

Maven

1 Add the JitPack repository to your build file

  <repositories>
	   <repository>
	       <id>jitpack.io</id>
	       <url>https://jitpack.io</url>
	  </repository>
  </repositories>

2 Add the dependency

  <dependency>
      <groupId>com.github.IsPra94</groupId>
      <artifactId>EasyToast</artifactId>
      <version>1.0.0</version>
  </dependency>

In Your Android Project

Success

EasyToast.success(MainActivity.this, "Success!!!"); //Default duration : Toast.LENGTH_SHORT
EasyToast.success(MainActivity.this, "Success!!!", Toast.LENGTH_LONG);
EasyToast.success(MainActivity.this, "Success!!!", R.drawable.custom_icon, Toast.LENGTH_LONG);

Error

EasyToast.error(MainActivity.this, "Error!!!"); //Default duration : Toast.LENGTH_SHORT
EasyToast.error(MainActivity.this, "Error!!!", Toast.LENGTH_LONG);
EasyToast.error(MainActivity.this, "Error!!!", R.drawable.custom_icon, Toast.LENGTH_LONG);

Info

EasyToast.info(MainActivity.this, "Info!!!"); //Default duration : Toast.LENGTH_SHORT
EasyToast.info(MainActivity.this, "Info!!!", Toast.LENGTH_LONG);
EasyToast.info(MainActivity.this, "Info!!!", R.drawable.custom_icon, Toast.LENGTH_LONG);

Warning

EasyToast.warning(MainActivity.this, "Warning!!!"); //Default duration : Toast.LENGTH_SHORT
EasyToast.warning(MainActivity.this, "Warning!!!", Toast.LENGTH_LONG);
EasyToast.warning(MainActivity.this, "Warning!!!", R.drawable.custom_icon, Toast.LENGTH_LONG);

Custom

EasyToast.custom(MainActivity.this, "Custom w/o icon"); //Default duration : Toast.LENGTH_SHORT
EasyToast.custom(MainActivity.this, "Custom w/o icon", Toast.LENGTH_LONG);
EasyToast.custom(MainActivity.this, "Custom w/ icon", R.drawable.custom_icon, Toast.LENGTH_LONG);
EasyToast.custom(MainActivity.this, "Custom colors w/o icon", getResources().getColor(R.color.background), getResources().getColor(R.color.text_color), Toast.LENGTH_LONG);
EasyToast.custom(MainActivity.this, "Custom colors w/ icon", R.drawable.custom_icon, getResources().getColor(R.color.background), getResources().getColor(R.color.text_color), Toast.LENGTH_LONG);

Download Sample App

About

Just another custom Android Toast 🍞 but We have Butter and Jam 😍

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%