Back to project page Android_Speech_To_Text_Clipboard_Widget.
The source code is released under:
GNU General Public License
If you think the Android project Android_Speech_To_Text_Clipboard_Widget 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.pgmacdesign.speechtotextclipboardwidget; /*from w w w . j a va 2 s.c om*/ import android.content.Context; import android.util.Log; import android.widget.Toast; public class L { public static void m(String message){ Log.d("Patrick Note", message); } public static void makeToast(Context context, String message){ Toast.makeText(context, message, Toast.LENGTH_SHORT).show(); } }