Android Toast Create showToask(Context context, String tip)

Here you can find the source of showToask(Context context, String tip)

Description

show Toask

Declaration

public static void showToask(Context context, String tip) 

Method Source Code

//package com.java2s;

import android.content.Context;

import android.widget.Toast;

public class Main {
    public static void showToask(Context context, String tip) {
        Toast.makeText(context, tip, Toast.LENGTH_SHORT).show();
    }//www.  j  a  va 2s .  c om
}

Related

  1. showToast(Context context, String msg)
  2. toast(Context context, String text)
  3. toast(Context c, String msg)
  4. showToastShort(Activity ctx, String text)