Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Log;

public class Main {
    private static boolean mbShowLog = true;

    public static void Logi(String tag, String message) {
        if (mbShowLog) {
            Log.i(tag, message);
        }
    }
}