Android仿微信錄制語音功能
本文實例為大家分享了Android仿微信錄制語音的具體代碼,供大家參考,具體內容如下
前言
我把錄音分成了兩部分
1.UI界面,彈窗讀秒
2.一個類(包含開始、停止、創(chuàng)建文件名功能)
第一部分
由于6.0權限問題,點擊按鈕申請權限通過則彈窗,如何申請權限
彈窗布局popw_record.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="260dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@drawable/take_phone"
android:orientation="vertical">
<ImageView
android:id="@+id/close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:padding="10dp"
android:src="@mipmap/guanbi" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/luyin" />
<Chronometer
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:format="%s" />
<TextView
android:id="@+id/startRecord"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/playrecord"
android:layout_marginTop="20dp"
android:background="@color/background"
android:padding="10dp"
/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
彈彈彈
/**
* 開始錄音
*/
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 {
//下面三個參數必須加,不加的話會奔潰,在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";
}
}
這是從我代碼中擇出來的,加上權限應該是可以的。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持我們。
欄 目:Android
下一篇:Kotlin之在Gradle中無參(no-arg)編譯器插件的使用詳解
本文標題:Android仿微信錄制語音功能
本文地址:http://www.jygsgssxh.com/a1/Android/9098.html
您可能感興趣的文章
- 01-10Android自定義View之繪制圓形頭像功能
- 01-10Android實現雙擊返回鍵退出應用實現方法詳解
- 01-10android實現記住用戶名和密碼以及自動登錄
- 01-10android實現簡單計算器功能
- 01-10Android 友盟第三方登錄與分享的實現代碼
- 01-10android實現指紋識別功能
- 01-10Emoji表情在Android JNI中的兼容性問題詳解
- 01-10Android實現圓形漸變加載進度條
- 01-10android開發(fā)環(huán)境中SDK文件夾下的所需內容詳解
- 01-10android異步消息機制 源碼層面徹底解析(1)


閱讀排行
本欄相關
- 01-10Android自定義View之繪制圓形頭像功能
- 01-10Android實現雙擊返回鍵退出應用實現方
- 01-10android實現簡單計算器功能
- 01-10android實現記住用戶名和密碼以及自動
- 01-10C++自定義API函數實現大數相乘算法
- 01-10Android 友盟第三方登錄與分享的實現代
- 01-10android實現指紋識別功能
- 01-10如何給Flutter界面切換實現點特效
- 01-10Android實現圓形漸變加載進度條
- 01-10Emoji表情在Android JNI中的兼容性問題詳
隨機閱讀
- 01-11ajax實現頁面的局部加載
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 08-05dedecms(織夢)副欄目數量限制代碼修改
- 01-10SublimeText編譯C開發(fā)環(huán)境設置
- 08-05織夢dedecms什么時候用欄目交叉功能?
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 04-02jquery與jsp,用jquery
- 01-10C#中split用法實例總結
- 01-10delphi制作wav文件的方法
- 01-10使用C語言求解撲克牌的順子及n個骰子


