Here you can find the source of alert(Context ctx, String msg)
Parameter | Description |
---|---|
ctx | a parameter |
msg | a parameter |
public static void alert(Context ctx, String msg)
//package com.java2s; import android.content.Context; import android.widget.Toast; public class Main { /**/*from w w w.java2 s . co m*/ * * @param ctx * @param msg */ public static void alert(Context ctx, String msg) { Toast.makeText(ctx, msg, Toast.LENGTH_LONG).show(); } }