Android Toast Create msgLong(final Context c, final String msg)

Here you can find the source of msgLong(final Context c, final String msg)

Description

Long toast message

Parameter

Parameter Description
c Application Context
msg Message to send

Declaration

public static void msgLong(final Context c, final String msg) 

Method Source Code

//package com.java2s;

import android.content.Context;

import android.widget.Toast;

public class Main {
    /**/*  w ww .  j  av  a2  s. c  o m*/
     * Long toast message
     *
     * @param c Application Context
     * @param msg Message to send
     */
    public static void msgLong(final Context c, final String msg) {
        if (c != null && msg != null) {
            Toast.makeText(c, msg.trim(), Toast.LENGTH_LONG).show();
        }
    }
}

Related

  1. showToast(final String toast, final Context context)
  2. showToastInThread(final Context context, final String msg)
  3. toast(String message, Context context)
  4. toast(final Context context, final CharSequence msg)
  5. msgLong(Context context, String msg)
  6. msgLong(final Context context, final String msg)
  7. msgShort(Context context, String msg)
  8. makeToast(Context appContext, String valueToShow)
  9. makeToast(Context context, String message, boolean longTime)