kstanoev
7/27/2015 - 12:38 PM

Showing toast notification in Android.

Showing toast notification in Android.

package org.nativescript.kstanoev.toaster;

import android.content.Context;
import android.widget.Toast;

public class Toaster {
   public void show(Context context) {
       CharSequence text = "Hello NativeScript!";
       int duration = Toast.LENGTH_SHORT;

       Toast toast = Toast.makeText(context, text, duration);
       toast.show();
   }
}