Android之如何開啟系統相機
阿新 • • 發佈:2019-01-10
為什麼要開啟系統相機呢?
因為現在的APP差不多都要求開啟系統相機來拍照,這個需求還是蠻廣的~所以就有了呼叫系統相機這一個功能~
如何開啟系統相機呢?
步驟如下:
1.先加許可權吧~
2.寫了倆個不同的開啟相機的方法:<span style="font-size:24px;"><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL"/></span>
(1)傳回原圖--程式碼如下:
public void btn(View view){
Intent intent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
Uri uri=Uri.fromFile(new File(path));
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(intent, REQUESTCODE2);
}
path寫個絕對路徑:
private String path=Environment.getExternalStorageDirectory().getAbsolutePath()+"/hehe.png";
這個路徑是可以把圖儲存下來的~
並且把圖展現出來~因為拍照了不可能不把圖弄出來吧~在MainActivity中重寫的onActivityResult方法中:
if(requestCode==REQUESTCODE2&&resultCode==RESULT_OK){ try { FileInputStream fileInputStream=new FileInputStream(path); Bitmap bitmap=BitmapFactory.decodeStream(fileInputStream); iv.setImageBitmap(bitmap); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
(2)開啟系統相機--程式碼如下:
public void startCamera(View view) {
// TODO Auto-generated method stub
Intent intent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
//startActivity(intent);
startActivityForResult(intent, REQUESTCODE);
}
if(requestCode==REQUESTCODE&&resultCode==RESULT_OK){
Bundle bundle=data.getExtras();
Bitmap bitmap=(Bitmap) bundle.get("data");
iv.setImageBitmap(bitmap);
}
(3)佈局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="btn"
android:text="傳回原圖"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="開啟系統相機"
android:onClick="startCamera" />
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/iv"/>
</LinearLayout>
效果圖: