APP手機拍照實驗

APP手機拍照實驗

ID:38248041

大?。?6.12 KB

頁數(shù):9頁

時間:2019-06-06

APP手機拍照實驗_第1頁
APP手機拍照實驗_第2頁
APP手機拍照實驗_第3頁
APP手機拍照實驗_第4頁
APP手機拍照實驗_第5頁
資源描述:

《APP手機拍照實驗》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫

1、拍照并顯示1、首先聲明權限:

2、ITE_EXTERNAL_STORAGE"/>2、然后布局文件1、代碼流程:用戶觸發(fā)拍照事件—>在SD卡中創(chuàng)建圖片文件(一般是在相冊中創(chuàng)建,當然也可以在自己應用程序的資源目錄下創(chuàng)建)—>通過Intent調用手機照相功能,并且將剛創(chuàng)建的照片文件處理后放到intent參數(shù)中:intent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromFile(mPhotoFile));最后在調用activity返回事件(onActivityResult)時,根據照片路

4、徑(之前創(chuàng)建圖片時用全局變量記?。ㄟ^BitmapFactory.decodeFile()讀取照片,在程序中顯示。packagecom.example.paizhao;importjava.io.File;importjava.text.SimpleDateFormat;importjava.util.Date;importandroid.app.Activity;importandroid.content.Intent;importandroid.graphics.Bitmap;importandro

5、id.graphics.BitmapFactory;importandroid.net.Uri;importandroid.os.Bundle;importandroid.provider.MediaStore;importandroid.view.View;importandroid.widget.Button;importandroid.widget.ImageView;publicclassMainActivityextendsActivity{privateButtonmButton;privat

6、eImageViewmImageView;//用于顯示照片privateFilemPhotoFile;privateStringmPhotoPath;publicfinalstaticintCAMERA_RESULT=8888;publicfinalstaticStringTAG="xx";@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.lay

7、out.main);mButton=(Button)findViewById(R.id.button);mButton.setOnClickListener(newButtonOnClickListener());mImageView=(ImageView)findViewById(R.id.imageView);}privateclassButtonOnClickListenerimplementsView.OnClickListener{publicvoidonClick(Viewv){try{Int

8、entintent=newIntent("android.media.action.IMAGE_CAPTURE");mPhotoPath="mnt/sdcard/DCIM/Camera/"+getPhotoFileName();mPhotoFile=newFile(mPhotoPath);if(!mPhotoFile.exists()){mPhotoFile.createNewFile();}intent.putExtra(M

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內容,確認文檔內容符合您的需求后進行下載,若出現(xiàn)內容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。