Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.app.Activity;

import android.text.Spanned;

import android.widget.Toast;

public class Main {
    /**
     * Show no Info alert dialog
     *
     * @param context current Activity context
     * @param msg     message to be shown on the alert dialog
     */
    public static void showNoInfoAlertToast(Activity context, Spanned msg) {
        Toast.makeText(context, msg, Toast.LENGTH_LONG).show();
    }
}