Back to project page EasyQuranMemorizer.
The source code is released under:
MIT License
If you think the Android project EasyQuranMemorizer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.google.easyquranmemorizerhelper; // ww w. java 2 s.c om import android.content.Context; import android.util.Log; import android.widget.Toast; /** * * @author Shoaib Khan * */ public class Logger { public static void makeToast(Context context,String message) { Toast.makeText(context, message, Toast.LENGTH_SHORT).show(); } public static void logMessage(String message) { Log.v("logMSG",message); } }