Android examples for android.media:Sound
take Sound Recorder Intent
import android.app.Activity; import android.content.ContentValues; import android.content.Intent; import android.graphics.Bitmap; import android.net.Uri; import android.provider.MediaStore; public class Main{ private static Intent takeSoundRecorderIntent() { Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("audio/amr"); return intent; }// w w w . ja v a 2s . c o m }