歡迎來到天天文庫
瀏覽記錄
ID:38248041
大?。?6.12 KB
頁數(shù):9頁
時間:2019-06-06
《APP手機拍照實驗》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫。
1、拍照并顯示1、首先聲明權限:2、ITE_EXTERNAL_STORAGE"/>2、然后布局文件3、ent"android:layout_height="wrap_content"/>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;importandro5、id.graphics.BitmapFactory;importandroid.net.Uri;importandroid.os.Bundle;importandroid.provider.MediaStore;importandroid.view.View;importandroid.widget.Button;importandroid.widget.ImageView;publicclassMainActivityextendsActivity{privateButtonmButton;privat6、eImageViewmImageView;//用于顯示照片privateFilemPhotoFile;privateStringmPhotoPath;publicfinalstaticintCAMERA_RESULT=8888;publicfinalstaticStringTAG="xx";@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.lay7、out.main);mButton=(Button)findViewById(R.id.button);mButton.setOnClickListener(newButtonOnClickListener());mImageView=(ImageView)findViewById(R.id.imageView);}privateclassButtonOnClickListenerimplementsView.OnClickListener{publicvoidonClick(Viewv){try{Int8、entintent=newIntent("android.media.action.IMAGE_CAPTURE");mPhotoPath="mnt/sdcard/DCIM/Camera/"+getPhotoFileName();mPhotoFile=newFile(mPhotoPath);if(!mPhotoFile.exists()){mPhotoFile.createNewFile();}intent.putExtra(M
2、ITE_EXTERNAL_STORAGE"/>2、然后布局文件3、ent"android:layout_height="wrap_content"/>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;importandro5、id.graphics.BitmapFactory;importandroid.net.Uri;importandroid.os.Bundle;importandroid.provider.MediaStore;importandroid.view.View;importandroid.widget.Button;importandroid.widget.ImageView;publicclassMainActivityextendsActivity{privateButtonmButton;privat6、eImageViewmImageView;//用于顯示照片privateFilemPhotoFile;privateStringmPhotoPath;publicfinalstaticintCAMERA_RESULT=8888;publicfinalstaticStringTAG="xx";@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.lay7、out.main);mButton=(Button)findViewById(R.id.button);mButton.setOnClickListener(newButtonOnClickListener());mImageView=(ImageView)findViewById(R.id.imageView);}privateclassButtonOnClickListenerimplementsView.OnClickListener{publicvoidonClick(Viewv){try{Int8、entintent=newIntent("android.media.action.IMAGE_CAPTURE");mPhotoPath="mnt/sdcard/DCIM/Camera/"+getPhotoFileName();mPhotoFile=newFile(mPhotoPath);if(!mPhotoFile.exists()){mPhotoFile.createNewFile();}intent.putExtra(M
3、ent"android:layout_height="wrap_content"/>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
此文檔下載收益歸作者所有