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 text, int type) {
        int duration = 0;
        if (type == 0) {
            duration = Toast.LENGTH_SHORT;
        } else {
            duration = Toast.LENGTH_LONG;
        }
        Toast.makeText(context, text, duration).show();
    }
}