Android - กล้องถ่ายรูป
ต่อไปนี้เป็นสองวิธีที่คุณสามารถใช้กล้องถ่ายรูปในแอปพลิเคชันของคุณ
ใช้แอปพลิเคชันกล้อง Android ที่มีอยู่ในแอปพลิเคชันของเรา
ใช้ Camera API โดยตรงจาก Android ในแอปพลิเคชันของเรา
ใช้แอปพลิเคชันกล้อง Android ที่มีอยู่ในแอปพลิเคชันของเรา
คุณจะใช้ MediaStore.ACTION_IMAGE_CAPTURE เพื่อเปิดแอปพลิเคชันกล้องที่มีอยู่ซึ่งติดตั้งในโทรศัพท์ของคุณ ไวยากรณ์ได้รับด้านล่าง
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
นอกเหนือจากข้างต้นแล้วยังมี Intent อื่น ๆ ที่จัดทำโดย MediaStore มีรายชื่อดังนี้
ซีเนียร์ No | ประเภทและคำอธิบายเจตนา |
---|---|
1 |
ACTION_IMAGE_CAPTURE_SECURE จะส่งคืนภาพที่ถ่ายจากกล้องเมื่ออุปกรณ์ได้รับการรักษาความปลอดภัย |
2 |
ACTION_VIDEO_CAPTURE เรียกแอปพลิเคชันวิดีโอที่มีอยู่ใน Android เพื่อจับภาพวิดีโอ |
3 |
EXTRA_SCREEN_ORIENTATION ใช้เพื่อตั้งค่าการวางแนวของหน้าจอเป็นแนวตั้งหรือแนวนอน |
4 |
EXTRA_FULL_SCREEN ใช้เพื่อควบคุมอินเทอร์เฟซผู้ใช้ของ ViewImage |
5 |
INTENT_ACTION_VIDEO_CAMERA จุดประสงค์นี้ใช้เพื่อเปิดกล้องในโหมดวิดีโอ |
6 |
EXTRA_SIZE_LIMIT ใช้เพื่อระบุขนาด จำกัด ของขนาดการจับภาพวิดีโอหรือภาพ |
ตอนนี้คุณจะใช้ฟังก์ชันstartActivityForResult ()เพื่อเปิดกิจกรรมนี้และรอผลลัพธ์ ไวยากรณ์ได้รับด้านล่าง
startActivityForResult(intent,0)
วิธีนี้ได้กำหนดไว้ในไฟล์ activityชั้นเรียน เรากำลังเรียกมันจากกิจกรรมหลัก มีวิธีการที่กำหนดไว้ในคลาสกิจกรรมที่ทำงานเหมือนกัน แต่ใช้เมื่อคุณไม่ได้เรียกจากกิจกรรม แต่มาจากที่อื่น ตามรายการด้านล่าง
ซีเนียร์ No | คำอธิบายฟังก์ชันกิจกรรม |
---|---|
1 |
startActivityForResult(Intent intent, int requestCode, Bundle options) เริ่มต้นกิจกรรม แต่สามารถเลือกกลุ่มตัวเลือกเพิ่มเติมได้ |
2 |
startActivityFromChild(Activity child, Intent intent, int requestCode) จะเริ่มกิจกรรมเมื่อกิจกรรมของคุณเป็นเด็กของกิจกรรมอื่น ๆ |
3 |
startActivityFromChild(Activity child, Intent intent, int requestCode, Bundle options) มันทำงานเหมือนกับข้างบน แต่สามารถใช้ค่าพิเศษในรูปแบบของบันเดิลกับมันได้ |
4 |
startActivityFromFragment(Fragment fragment, Intent intent, int requestCode) เปิดตัวกิจกรรมจากส่วนที่คุณอยู่ภายใน |
5 |
startActivityFromFragment(Fragment fragment, Intent intent, int requestCode, Bundle options) ไม่เพียง แต่เปิดตัวกิจกรรมจากส่วนย่อยเท่านั้น แต่ยังสามารถรับค่าพิเศษด้วย |
ไม่ว่าคุณจะใช้ฟังก์ชั่นใดในการเปิดกิจกรรมฟังก์ชันเหล่านี้จะส่งคืนผลลัพธ์ทั้งหมด ผลที่สามารถรับได้โดยเอาชนะฟังก์ชันonActivityResult
ตัวอย่าง
นี่คือตัวอย่างที่แสดงวิธีเปิดแอปพลิเคชั่นกล้องที่มีอยู่เพื่อจับภาพและแสดงผลลัพธ์ในรูปแบบของบิตแมป
ในการทดลองกับตัวอย่างนี้คุณต้องเรียกใช้สิ่งนี้บนอุปกรณ์จริงที่รองรับกล้อง
ขั้นตอน | คำอธิบาย |
---|---|
1 | คุณจะใช้ Android studio IDE เพื่อสร้างแอปพลิเคชัน Android และตั้งชื่อเป็นกล้องถ่ายรูปภายใต้ com.example.sairamkrishna.myapplication |
2 | แก้ไขไฟล์ src / MainActivity.java เพื่อเพิ่มรหัสความตั้งใจเพื่อเปิดกล้อง |
3 | แก้ไขไฟล์ XML เค้าโครง res / layout / activity_main.xml |
4 | เพิ่มการอนุญาตกล้องและเรียกใช้แอปพลิเคชันและเลือกอุปกรณ์ Android ที่ใช้งานอยู่และติดตั้งแอปพลิเคชันบนแอปพลิเคชันและตรวจสอบผลลัพธ์ |
ต่อไปนี้เป็นเนื้อหาของไฟล์กิจกรรมหลักที่แก้ไข src/MainActivity.java.
package com.example.sairamkrishna.myapplication;
import android.Manifest;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Settings;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
public class MainActivity extends AppCompatActivity {
public static final int MY_PERMISSIONS_REQUEST_CAMERA = 100;
public static final String ALLOW_KEY = "ALLOWED";
public static final String CAMERA_PREF = "camera_pref";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
if (getFromPref(this, ALLOW_KEY)) {
showSettingsAlert();
} else if (ContextCompat.checkSelfPermission(this,
Manifest.permission.CAMERA)
!= PackageManager.PERMISSION_GRANTED) {
// Should we show an explanation?
if (ActivityCompat.shouldShowRequestPermissionRationale(this,
Manifest.permission.CAMERA)) {
showAlert();
} else {
// No explanation needed, we can request the permission.
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.CAMERA},
MY_PERMISSIONS_REQUEST_CAMERA);
}
}
} else {
openCamera();
}
}
public static void saveToPreferences(Context context, String key, Boolean allowed) {
SharedPreferences myPrefs = context.getSharedPreferences(CAMERA_PREF,
Context.MODE_PRIVATE);
SharedPreferences.Editor prefsEditor = myPrefs.edit();
prefsEditor.putBoolean(key, allowed);
prefsEditor.commit();
}
public static Boolean getFromPref(Context context, String key) {
SharedPreferences myPrefs = context.getSharedPreferences(CAMERA_PREF,
Context.MODE_PRIVATE);
return (myPrefs.getBoolean(key, false));
}
private void showAlert() {
AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
alertDialog.setTitle("Alert");
alertDialog.setMessage("App needs to access the Camera.");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "DONT ALLOW",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
finish();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "ALLOW",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
ActivityCompat.requestPermissions(MainActivity.this,
new String[]{Manifest.permission.CAMERA},
MY_PERMISSIONS_REQUEST_CAMERA);
}
});
alertDialog.show();
}
private void showSettingsAlert() {
AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
alertDialog.setTitle("Alert");
alertDialog.setMessage("App needs to access the Camera.");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "DONT ALLOW",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
//finish();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "SETTINGS",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
startInstalledAppDetailsActivity(MainActivity.this);
}
});
alertDialog.show();
}
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
switch (requestCode) {
case MY_PERMISSIONS_REQUEST_CAMERA: {
for (int i = 0, len = permissions.length; i < len; i++) {
String permission = permissions[i];
if (grantResults[i] == PackageManager.PERMISSION_DENIED) {
boolean
showRationale =
ActivityCompat.shouldShowRequestPermissionRationale(
this, permission);
if (showRationale) {
showAlert();
} else if (!showRationale) {
// user denied flagging NEVER ASK AGAIN
// you can either enable some fall back,
// disable features of your app
// or open another dialog explaining
// again the permission and directing to
// the app setting
saveToPreferences(MainActivity.this, ALLOW_KEY, true);
}
}
}
}
// other 'case' lines to check for other
// permissions this app might request
}
}
@Override
protected void onResume() {
super.onResume();
}
public static void startInstalledAppDetailsActivity(final Activity context) {
if (context == null) {
return;
}
final Intent i = new Intent();
i.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
i.addCategory(Intent.CATEGORY_DEFAULT);
i.setData(Uri.parse("package:" + context.getPackageName()));
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
i.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
context.startActivity(i);
}
private void openCamera() {
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivity(intent);
}
}
ต่อไปนี้จะเป็นเนื้อหาของ res/layout/activity_main.xml file-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
</RelativeLayout>
ต่อไปนี้จะเป็นเนื้อหาของ res/values/strings.xml เพื่อกำหนดค่าคงที่ใหม่หนึ่งค่า
<resources>
<string name="app_name">My Application</string>
</resources>
ต่อไปนี้เป็นเนื้อหาเริ่มต้นของ AndroidManifest.xml -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<uses-permission android:name="android.permission.CAMERA" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.sairamkrishna.myapplication.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
มาลองเรียกใช้แอปพลิเคชันของคุณ ฉันถือว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ หากต้องการเรียกใช้แอปจาก android studio ให้เปิดไฟล์กิจกรรมของโครงการแล้วคลิก
เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือกจากนั้นตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะเปิดกล้องและแสดงหน้าจอต่อไปนี้ -