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; //ww w. ja v a 2s . com import android.app.Activity; import android.content.Context; import android.media.MediaPlayer; import android.widget.Toast; public class SadPanda extends Activity{ MediaPlayer aww; public void theSadPanda(Context context, String string){ Toast.makeText(context, string, Toast.LENGTH_SHORT).show(); aww = MediaPlayer.create(context, R.raw.aww_sound_effect); aww.start(); } }