Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.widget.Toast;

public class Main {

    public static void makeToast(Context context, String s) {

        makeToast(context, s, Toast.LENGTH_SHORT);
    }

    public static void makeToast(Context context, String s, int length) {

        Toast.makeText(context, s, length).show();
    }

    public static void makeToast(Context context, int stringResId, int length) {

        Toast.makeText(context, stringResId, length).show();
    }
}