Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.AlertDialog;

public class Main {
    public static void showDialog(AlertDialog alertdialog) {
        try {
            alertdialog.show();
            return;
        } catch (Exception exception) {
            return;
        }
    }
}