Skip to content

naseemakhtar994/Toaster-Library

 
 

Repository files navigation

Toaster-Library

Download License Android Arsenal

Toaster is android library that helps in showing toast and dialog.

Installation

  • Add the dependency from jCenter to your app's (not project) build.gradle file:
repositories {
    jcenter()
}

dependencies {
    compile 'net.alexandroid.utils:toaster:1.2'
}

Release notes

  • 1.2 - Basic enhancements

How to use it

  • Toast:

 Toaster.showToast(this, "This is our awesome toast");
 // 300 - animation duration, 500 - visible duration
 Toaster.showToast(this, "This is our awesome toast", 300, 500);  
  • Dialog:

private Toaster mToaster;
...
private void showDialog() {
    mToaster = new Toaster.Builder(this)
            .setTitle("Dialog title")
            .setText("Text of the dialog here")
            .setPositive("OK")
            .setNegative("CANCEL")
            .setAnimationDuration(300)
            .setCallBack(this).build();
    mToaster.show();
}  

@Override
public void onBackPressed() {
   if (mToaster == null || mToaster.onBackPressed()) {
       super.onBackPressed();
    }
}
  • Custom layout for dialog:

 mToaster = new Toaster.Builder(this)
.setCustomLayout(R.layout.custom)
...

https://github.com/Pulimet/Toaster-Library/blob/master/app/src/main/res/layout/custom.xml




License

Copyright 2018 Alexey Korolev

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

Android library, Custom toast and dialog (2018)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%