Computer >> Máy Tính >  >> Lập trình >> Android

Làm cách nào để nhấp vào camera theo chương trình trong Android?

Ví dụ này trình bày cách

Bước 1 - Tạo một dự án mới trong Android Studio, vào Tệp? Dự án mới và điền tất cả các chi tiết bắt buộc để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

Ví dụ

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:padding="4dp">
<TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_above="@id/imageView"
   android:layout_centerInParent="true"
   android:layout_marginBottom="10dp"
   android:text="Click the below button to take photo from camera"
   android:textAlignment="center"
   android:textColor="@android:color/holo_purple"
   android:textSize="16sp"
   android:textStyle="bold" />
<ImageView
   android:id="@+id/imageView"
   android:layout_width="match_parent"
   android:layout_height="630dp"
   android:layout_above="@id/btnCaptureImage"
   android:layout_marginTop="16dp"
   android:scaleType="centerCrop"
   android:src="@drawable/ic_baseline_image_24" />
<Button
   android:id="@+id/btnCaptureImage"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_alignParentBottom="true"
   android:text="Capture Image" />
</RelativeLayout>

Bước 3 - Thêm mã sau vào src / MainActivity.kt

import android.Manifest
import android.content.ContentValues
import android.content.Intent
import android.content.pm.PackageManager
import android.net.Uri
import android.os.Bundle
import android.provider.MediaStore
import android.widget.Button
import android.widget.ImageView
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import androidx.core.app.ActivityCompat
import androidx.core.content.ContextCompat
class MainActivity : AppCompatActivity() {
   lateinit var button: Button
   private lateinit var imageView: ImageView
   lateinit var imageUri: Uri
   private val permissionCode = 1000
   private val imageCaptureCode = 1001
   override fun onCreate(savedInstanceState: Bundle?) {
      super.onCreate(savedInstanceState)
      setContentView(R.layout.activity_main)
      title = "KotlinApp"
      imageView = findViewById(R.id.imageView)
      button = findViewById(R.id.btnCaptureImage)
      button.setOnClickListener {
         ActivityCompat.requestPermissions(
            this,
            arrayOf(Manifest.permission.CAMERA),
            permissionCode
         )
         if (ContextCompat.checkSelfPermission(
            this,
            Manifest.permission.CAMERA
         ) != PackageManager.PERMISSION_GRANTED
         ) {
            openCamera()
         } else {
            PackageManager.PERMISSION_DENIED
         }
      }
   }
   private fun openCamera() {
      val values = ContentValues()
      values.put(MediaStore.Images.Media.TITLE, "New Picture")
      values.put(MediaStore.Images.Media.DESCRIPTION, "From the Camera")
      imageUri = contentResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values)!!
      val cameraIntent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)
      cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri)
      startActivityForResult(cameraIntent, imageCaptureCode)
   }
   override fun onRequestPermissionsResult(
   requestCode: Int,
   permissions: Array<String?>,
   grantResults: IntArray
   ) {
      when (requestCode) {
         permissionCode -> {
            if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
               openCamera()
            } else {
               Toast.makeText(this, "Permission denied...", Toast.LENGTH_SHORT).show()
            }
         }
      }  
   }
   override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
      super.onActivityResult(requestCode, resultCode, data)
      if (resultCode == RESULT_OK) {
         imageView.setImageURI(imageUri);
      }
   }
}

Bước 4 - Thêm mã sau vào androidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.example.q11">
   <uses-permission android:name="android.permission.CAMERA" />
   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Run Làm cách nào để nhấp vào camera theo chương trình trong Android? từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn.

LƯU Ý:HÃY THỬ ĐÂY LÀ THIẾT BỊ THỰC SỰ ĐỂ CÓ KẾT QUẢ TỐT HƠN

Làm cách nào để nhấp vào camera theo chương trình trong Android?

Làm cách nào để nhấp vào camera theo chương trình trong Android?

Làm cách nào để nhấp vào camera theo chương trình trong Android?