Android Toast Create sendMsg(Context context, String msg)

Here you can find the source of sendMsg(Context context, String msg)

Description

Long toast message

Parameter

Parameter Description
context Application Context
msg Message to send

Declaration

public static void sendMsg(Context context, String msg) 

Method Source Code

//package com.java2s;
import android.content.Context;

import android.widget.Toast;

public class Main {
    /**//  w w w.  ja v  a  2 s .c o m
     * Long toast message
     *
     * @param context Application Context
     * @param msg Message to send
     */
    public static void sendMsg(Context context, String msg) {
        if (context != null && msg != null) {
            msgLong(context, msg);
        }
    }

    /**
     * Long toast message
     *
     * @param context Application Context
     * @param msg Message to send
     */
    public static void msgLong(Context context, String msg) {
        if (context != null && msg != null) {
            Toast.makeText(context, msg.trim(), Toast.LENGTH_LONG).show();
        }
    }
}

Related

  1. msgLong(final Context c, final String msg)
  2. msgLong(final Context context, final String msg)
  3. msgShort(Context context, String msg)
  4. makeToast(Context appContext, String valueToShow)
  5. makeToast(Context context, String message, boolean longTime)
  6. sendMsg(Context context, String msg)