Android 錄音與播放功能的簡(jiǎn)單實(shí)例
創(chuàng)新互聯(lián)致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營(yíng)銷,包括成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、SEO優(yōu)化、網(wǎng)絡(luò)推廣、整站優(yōu)化營(yíng)銷策劃推廣、電子商務(wù)、移動(dòng)互聯(lián)網(wǎng)營(yíng)銷等。創(chuàng)新互聯(lián)為不同類型的客戶提供良好的互聯(lián)網(wǎng)應(yīng)用定制及解決方案,創(chuàng)新互聯(lián)核心團(tuán)隊(duì)十載專注互聯(lián)網(wǎng)開(kāi)發(fā),積累了豐富的網(wǎng)站經(jīng)驗(yàn),為廣大企業(yè)客戶提供一站式企業(yè)網(wǎng)站建設(shè)服務(wù),在網(wǎng)站建設(shè)行業(yè)內(nèi)樹(shù)立了良好口碑。最近在研究Android中一些常用的功能,像地圖、拍照、錄音和播放的實(shí)現(xiàn)等等,還有一些側(cè)滑、動(dòng)畫等是如何實(shí)現(xiàn)的。
今天就把錄音和播放的實(shí)現(xiàn)分享一下,錄音和播放比較簡(jiǎn)單,利用android內(nèi)部的類即可實(shí)現(xiàn)。
1、先看下運(yùn)行后的界面:
以下三張圖分別是進(jìn)入、錄音、播放時(shí)的。
2、Layout布局文件
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:background="@drawable/switcherbar_bg" android:gravity="center" android:text="@string/audio_record_title" android:textColor="#ffffff" android:textSize="16sp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:orientation="vertical" android:paddingLeft="10dip" android:paddingRight="10dip" > <TextView android:id="@+id/audio_record_time" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="00:00" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dip" android:orientation="horizontal" > <Button android:id="@+id/audio_record_start" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:background="@drawable/searchbtn_normal" android:text="開(kāi)始錄音" android:textSize="14sp" /> <Button android:id="@+id/audio_record_stop" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_marginLeft="5dip" android:layout_weight="1" android:background="@drawable/searchbtn_bg" android:text="結(jié)束錄音" android:textSize="14sp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dip" android:orientation="horizontal" > <Button android:id="@+id/audio_record_play" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:background="@drawable/searchbtn_normal" android:text="播放錄音" android:textSize="14sp" /> <Button android:id="@+id/audio_record_select" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_marginLeft="5dip" android:layout_weight="1" android:background="@drawable/searchbtn_bg" android:text="確定選擇" android:textSize="14sp" /> </LinearLayout> </LinearLayout> </RelativeLayout>
網(wǎng)頁(yè)標(biāo)題:Android錄音與播放功能的簡(jiǎn)單實(shí)例-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)路徑:http://jinyejixie.com/article34/djecpe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、網(wǎng)站維護(hù)、手機(jī)網(wǎng)站建設(shè)、App設(shè)計(jì)、微信小程序、微信公眾號(hào)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容