android 如何拍摄照片并将其设置为我的ImageButton,而不使用已弃用的方法startActivityForResult()?

vu8f3i0k  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(147)

这是我现在的代码:

  1. Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  2. startActivityForResult(intent, 0);
  3. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  4. super.onActivityResult(requestCode, resultCode, data);
  5. if(requestCode == 0 && resultCode == AppCompatActivity.RESULT_OK) {
  6. ibPic.setImageBitmap((Bitmap) data.getExtras().get("data"));
  7. }
  8. }

字符串
我尝试使用ActivityResultLauncherregisterForActivityResult(),但它没有工作。

ujv3wf0j

ujv3wf0j1#

现在您可以使用ActivityResultLauncher来实现,具体步骤如下:

1.注册

  • 使用registerForActivityResult与选定的合约和结果回调。
    2.启动
  • 在ActivityResultLauncher上将startActivityForResult替换为launch。
    3.处理结果
  • 从回调中的ActivityResult对象提取结果信息。

例如
public class Jumper {

  1. private ImageButton imageButton;
  2. private ActivityResultLauncher<Intent> cameraLauncher;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.your_layout);
  7. imageButton = findViewById(R.id.your_image_button_id);
  8. // Set up the camera launcher for handling the result
  9. cameraLauncher = registerForActivityResult(
  10. new ActivityResultContracts.StartActivityForResult(),
  11. new ActivityResultCallback<ActivityResult>() {
  12. @Override
  13. public void onActivityResult(ActivityResult result) {
  14. handleCameraResult(result);
  15. }
  16. }
  17. );
  18. // Set a click listener to open the camera when the image button is clicked
  19. imageButton.setOnClickListener(new View.OnClickListener() {
  20. @Override
  21. public void onClick(View view) {
  22. openCamera();
  23. }
  24. });
  25. }
  26. // Function to open the camera
  27. private void openCamera() {
  28. Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  29. if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
  30. cameraLauncher.launch(takePictureIntent);
  31. }
  32. }
  33. // Function to handle the camera result. Handling Results**strong text**
  34. private void handleCameraResult(ActivityResult result) {
  35. if (result.getResultCode() == RESULT_OK) {
  36. Intent data = result.getData();
  37. if (data != null && data.getExtras() != null) {
  38. Bitmap photo = (Bitmap) data.getExtras().get("data");
  39. imageButton.setImageBitmap(photo);
  40. }
  41. }
  42. }

字符串
}

展开查看全部

相关问题