Android仿微信錄制語音功能
本文實例為大家分享了Android仿微信錄制語音的具體代碼,供大家參考,具體內(nèi)容如下
前言
我把錄音分成了兩部分
1.UI界面,彈窗讀秒
2.一個類(包含開始、停止、創(chuàng)建文件名功能)
第一部分
由于6.0權(quán)限問題,點擊按鈕申請權(quán)限通過則彈窗,如何申請權(quán)限
彈窗布局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 {
// 準(zhǔn)備好開始錄音
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)限應(yīng)該是可以的。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android布局之GridLayout網(wǎng)格布局
網(wǎng)格布局標(biāo)簽是GridLayout。這個布局是android4.0新增的布局。這個布局只有4.0之后的版本才能使用。本文給大家介紹Android布局之GridLayout網(wǎng)格布局相關(guān)知識,感興趣的朋友一起學(xué)習(xí)吧2015-12-12
Android RecyclerView詳解之實現(xiàn) ListView GridView瀑布流效果
RecyclerView 是Android L版本中新添加的一個用來取代ListView的SDK,它的靈活性與可替代性比listview更好2016-07-07
Android在類微信程序中實現(xiàn)藍(lán)牙聊天功能的示例代碼
這篇文章主要介紹了Android在類微信程序中實現(xiàn)藍(lán)牙聊天功能,本文通過實例代碼給大家介紹的非常想詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-06-06
Android studio導(dǎo)出APP測試包和構(gòu)建正式簽名包
大家好,本篇文章主要講的是Android studio導(dǎo)出APP測試包和構(gòu)建正式簽名包,感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下2021-12-12
Android使用VideoView出現(xiàn)無法播放此視頻問題的解決方法
Android提供了 VideoView組件,它的作用與ImageView類似,只是ImageView用于顯示圖片,而VideoView用于播放視頻,下面這篇文章主要給大家介紹了關(guān)于利用VideoView出現(xiàn)無法播放此視頻問題的解決方法,需要的朋友可以參考下2018-07-07
Android?ViewPager2?+?Fragment?聯(lián)動效果的實現(xiàn)思路
這篇文章主要介紹了Android?ViewPager2?+?Fragment?聯(lián)動,本篇主要介紹一下 ViewPager2 + Fragment聯(lián)動效果的實現(xiàn)思路,需要的朋友可以參考下2022-12-12
Android中的android:layout_weight使用詳解
layout_weight的作用是設(shè)置子空間在LinearLayout的重要度(控件的大小比重)。layout_weight的值越低,則控件越重要,下面為大家介紹下具體的使用方法2013-06-06
Android中加載網(wǎng)絡(luò)資源時的優(yōu)化可使用(線程+緩存)解決
Android 中加載網(wǎng)絡(luò)資源時的優(yōu)化;基本的思路是線程+緩存來解決,具體解決思路如下,有類似情況的朋友可以參考下哈2013-06-06

