亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 中怎么實現無預覽拍照功能

發布時間:2021-06-27 18:49:53 來源:億速云 閱讀:663 作者:Leah 欄目:移動開發

這篇文章給大家介紹Android 中怎么實現無預覽拍照功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

public void onTakePhotoClicked() {
   final SurfaceView preview = new SurfaceView(this);
   SurfaceHolder holder = preview.getHolder();
   // deprecated setting, but required on Android versions prior to 3.0
holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
 holder.addCallback(new SurfaceHolder.Callback() {
     @Override
     //The preview must happen at or after this point or takePicture fails
     public void surfaceCreated(SurfaceHolder holder) {
       Log.d(TAG, "Surface created");
        camera = null;
       try {
         camera = Camera.open(Camera.CameraInfo.CAMERA_FACING_BACK);
         Log.d(TAG, "Opened camera");
         try {
           camera.setPreviewDisplay(holder);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
         camera.startPreview();
         Log.d(TAG, "Started preview");
      //延時拍照
         ThreadUtils.postOnUiThreadDelayed(new Runnable() {
           @Override
           public void run() {
             Log.e("zgj","開始拍照");
             camera.takePicture(null, null, CameraService.this);
           }
         },5000);
       } catch (Exception e) {
         if (camera != null)
           camera.release();
         throw new RuntimeException(e);
       }
     }
     @Override
     public void surfaceDestroyed(SurfaceHolder holder) {}
     @Override
     public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {}
   });
   WindowManager wm = (WindowManager)getSystemService(Context.WINDOW_SERVICE);
   WindowManager.LayoutParams params = new WindowManager.LayoutParams(
       1, 1, //Must be at least 1x1
       WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY,
       0,
       //Don't know if this is a safe default
       PixelFormat.UNKNOWN);
   //Don't set the preview visibility to GONE or INVISIBLE
   wm.addView(preview, params);
 }
 @Override
 public void onPictureTaken(byte[] bytes, Camera camera) {
   Log.e("zgj", "拍照結束");
   File pictureDir = Environment.getExternalStorageDirectory();
   if (pictureDir == null) {
     Log.d("zgj",
         "Error creating media file, check storage permissions!");
     return;
   }
   try {
     String pictureName = "ssss.png";
     File file = new File(pictureDir + "/pic/");
     if (!file.exists()) {
       file.mkdir();
     }
     file = new File(pictureDir + "/pic/" + pictureName);
     FileOutputStream fos = new FileOutputStream(file);
     fos.write(bytes);
     fos.close();
   } catch (FileNotFoundException e) {
     Log.d("zgj", "File not found: " + e.getMessage());
   } catch (IOException e) {
     Log.d("zgj", "Error accessing file: " + e.getMessage());
   }
 }

關于Android 中怎么實現無預覽拍照功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝应县| 石首市| 宁陵县| 兴和县| 民县| 宿松县| 仪征市| 依安县| 张北县| 巨鹿县| 东城区| 广州市| 衢州市| 清涧县| 阜宁县| 宁陕县| 井陉县| 华安县| 中江县| 共和县| 长阳| 吴江市| 铜鼓县| 玉树县| 吴堡县| 措勤县| 陈巴尔虎旗| 广河县| 香格里拉县| 泾川县| 施甸县| 永宁县| 二手房| 名山县| 涿州市| 库车县| 娄底市| 磴口县| 筠连县| 银川市| 监利县|