真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android仿微信錄制語音功能

本文實例為大家分享了Android仿微信錄制語音的具體代碼,供大家參考,具體內(nèi)容如下

創(chuàng)新互聯(lián)-成都網(wǎng)站建設公司,專注成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設、網(wǎng)站營銷推廣,域名注冊,雅安服務器托管成都網(wǎng)站托管有關企業(yè)網(wǎng)站制作方案、改版、費用等問題,請聯(lián)系創(chuàng)新互聯(lián)。

前言

我把錄音分成了兩部分

1.UI界面,彈窗讀秒
2.一個類(包含開始、停止、創(chuàng)建文件名功能)

第一部分

由于6.0權(quán)限問題,點擊按鈕申請權(quán)限通過則彈窗,如何申請權(quán)限

彈窗布局popw_record.xml

<?xml version="1.0" encoding="utf-8"?>



  

    

    

      

      

      

    
  

彈彈彈

 /**
   * 開始錄音
   */
  private void showPopup() {

    final View contentView = LayoutInflater.from(Orderdeatil.this).inflate(R.layout.popw_record, null);
    mPopWindow = new PopupWindow(contentView, ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.WRAP_CONTENT, true);
    mPopWindow.setContentView(contentView);

    TextView startRe = (TextView) contentView.findViewById(R.id.startRecord);
    startRe.setOnTouchListener(new View.OnTouchListener() {
      @Override
      public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) {
          case MotionEvent.ACTION_UP://松開事件發(fā)生后執(zhí)行代碼的區(qū)域

            if (mPopWindow != null) {
              mPopWindow.dismiss();
              sr.stopRecording();
            }

            break;
          case MotionEvent.ACTION_DOWN://按住事件發(fā)生后執(zhí)行代碼的區(qū)域

            Chronometer timer = (Chronometer) contentView.findViewById(R.id.timer);
            timer.setBase(SystemClock.elapsedRealtime());//計時器清零
            timer.start();//開始錄音的提示

            sr.startRecording();

            break;
          case MotionEvent.ACTION_CANCEL:

            if (mPopWindow != null) {
              mPopWindow.dismiss();
              sr.stopRecording();//停止錄音
            }

            break;
          default:
            break;
        }
        return true;
      }
    });
    ImageView close = (ImageView) contentView.findViewById(R.id.close);
    close.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        mPopWindow.dismiss();
      }
    });


    mPopWindow.setTouchable(true);
    mPopWindow.setFocusable(true);
    mPopWindow.setBackgroundDrawable(new BitmapDrawable());
    mPopWindow.setOutsideTouchable(true);
    mPopWindow.setTouchInterceptor(new View.OnTouchListener() {
      public boolean onTouch(View v, MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_OUTSIDE) {
          mPopWindow.dismiss();
          return true;
        }
        return false;
      }
    });
    View rootview = LayoutInflater.from(Orderdeatil.this).inflate(R.layout.activity_orderdeatil, null);
    mPopWindow.showAtLocation(rootview, Gravity.CENTER, 0, 0);

  }

第二部分 工具類

class SoundRecorder {

    public void startRecording() {
      mRecorder = new MediaRecorder();
      mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
      mRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
      mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
      mRecorder.setOutputFile(newFileName());

      try {
        // 準備好開始錄音
        mRecorder.prepare();

        mRecorder.start();
      } catch (IllegalStateException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }


    }

    public void stopRecording() {
      if (mRecorder != null) {
        //added by ouyang start
        try {
          //下面三個參數(shù)必須加,不加的話會奔潰,在mediarecorder.stop();
          //報錯為:RuntimeException:stop failed
          mRecorder.setOnErrorListener(null);
          mRecorder.setOnInfoListener(null);
          mRecorder.setPreviewDisplay(null);
          mRecorder.stop();
        } catch (IllegalStateException e) {
          // TODO: handle exception
          Log.i("Exception", Log.getStackTraceString(e));
        } catch (RuntimeException e) {
          // TODO: handle exception
          Log.i("Exception", Log.getStackTraceString(e));
        } catch (Exception e) {
          // TODO: handle exception
          Log.i("Exception", Log.getStackTraceString(e));
        }
        //added by ouyang end

        mRecorder.release();
        mRecorder = null;

        upRecord();
      }
    }

    public String newFileName() {
      mFileName = Environment.getExternalStorageDirectory()
          .getAbsolutePath();

      String s = new SimpleDateFormat("yyyy-MM-dd hhmmss")
          .format(new Date());
      return mFileName += "/rcd_" + s + ".mp3";
    }
}

這是從我代碼中擇出來的,加上權(quán)限應該是可以的。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


標題名稱:Android仿微信錄制語音功能
當前網(wǎng)址:http://weahome.cn/article/podgcj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部