一丶照相機(jī)的應(yīng)用

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:主機(jī)域名、虛擬空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、米東網(wǎng)站維護(hù)、網(wǎng)站推廣。
創(chuàng)建意圖對(duì)象啟動(dòng)拍照
Intent intent = new Intent();
//設(shè)置動(dòng)作
intent. setAction(MediaStore.Action_p_w_picpath_capture);
//設(shè)置圖片保存的路徑
File file = new File(Environment.getExternalStorageDirectory() + "/haha.png");
//設(shè)置照片的名字
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
//啟動(dòng)意圖拍照
startActivityForResult(intent,0);
二丶錄像機(jī)的應(yīng)用
//創(chuàng)建一個(gè)意圖對(duì)象
Intent intent = new Intent();
//設(shè)置他的動(dòng)作
intent.setAction(MediaStore.ACTION_VIDEO_CAPTURE);
//創(chuàng)建文件保存路徑
File file = new File(Environment.getExternalStorageDirectory() + "/haha.mp4");
//指定文件名字
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
//設(shè)置視頻的錄制質(zhì)量是高質(zhì)量,大尺寸
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
//啟動(dòng)系統(tǒng)的錄象程序錄像
新聞名稱:Android多媒體(照相機(jī)和錄像機(jī))
文章起源:http://www.yijiale78.com/article30/ghdopo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、網(wǎng)站營(yíng)銷、網(wǎng)頁(yè)設(shè)計(jì)公司、品牌網(wǎng)站建設(shè)、網(wǎng)站收錄、網(wǎng)站排名
聲明:本網(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)