谁能告诉我,怎么调用录音设备

解决方案 »

  1.   

      额 这个是调用android录音的api···· 
      

  2.   

    调用系统的MediaRecorder
    http://1225682794.iteye.com/blog/816502
      

  3.   

    直接调用一个录音的intent
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType(ContentType.AUDIO_AMR);
    intent.setClassName("com.android.soundrecorder",
                        "com.android.soundrecorder.SoundRecorder");
      

  4.   

    这有个小例子,你参考下
    http://blog.sina.com.cn/s/blog_6111ce890100qe3r.html