ToastUtils.java 676 Bytes
package com.polysoft.nafmii.utils;

import android.widget.Toast;

public class ToastUtils {


    public static void showLong(String message) {
        Toast toast = Toast.makeText(CtxUtils.getApplication(), null, Toast.LENGTH_LONG);
        toast.setText(message);
        toast.show();
//        Toast.makeText(CtxUtils.getApplication(), message, Toast.LENGTH_LONG).show();
    }

    public static void showShort(String message) {
        Toast toast = Toast.makeText(CtxUtils.getApplication(), null, Toast.LENGTH_SHORT);
        toast.setText(message);
        toast.show();
//        Toast.makeText(CtxUtils.getApplication(), message, Toast.LENGTH_SHORT).show();
    }
}