Sent camera picture via intent

user3934048

I try to sent my photo via intent.

@Override
public void onPictureTaken(byte[] data, Camera camera) {

Intent intent=new Intent(this,AktivityPreview.class);
intent.putExtra("picture", data);
startActivity(intent);
}

Second activity

Intent intent=getIntent();
byte[] arrayP=intent.getExtras().getByteArray("picture");

But before second activity launch I get error FALED BINDER TRANSACTION

Illegal Argument

Android's Binder transaction buffer fixed size(500kb to 1mb) and is shared by all transactions in your app. As your byte[] can be larger than the available buffer it will generate FALED BINDER TRANSACTION error or TransactionTooLarge exception. Try saving the byte into a imagefile and send that file's path via a intent.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Determine if data was sent via intent

From Dev

Taking a picture with a camera intent and saving it to a file

From Dev

Picture file captured with camera intent empty for a while in onActivityResult

From Dev

Android: take camera picture intent remove confirmation dialog

From Dev

how to start camera intent and save a non-compressed picture

From Dev

Take picture only with android camera intent in Kotlin, not video

From Dev

Android Tablet Take Picture Camera Intent Activity Restarts

From Dev

Android- taking a picture for temporary use with the camera intent

From Dev

Taking Picture via intent to internal (app) storage returns null for bitmap

From Dev

Taking Picture via intent to internal (app) storage returns null for bitmap

From Dev

Sending SMS via an Intent and know if the SMS has been sent or not

From Dev

View a jpeg image sent via intent in an android application

From Dev

Change the text for buttons when taking picture via Camera using UIIMagePickerController

From Dev

Listening to Intent being sent

From Dev

android: camera is not taking a picture

From Dev

Camera Intent in Fragment

From Dev

Unable to StartActivityForResult() with camera Intent

From Dev

Camera Intent call onDestroy()

From Dev

Camera Intent destroys Activity

From Dev

Unable to StartActivityForResult() with camera Intent

From Dev

fileNotFoundException camera intent - Android

From Dev

Error using ZXing barcode scanner via intent from my custom camera view

From Dev

Android - Ensuring that photo orientation is preserved when taking photos via Camera Intent?

From Dev

Sending picture with intent to TypeApp Mail

From Dev

Camera intent doesn't show in intent chooser

From Dev

Activity - Intent sent info to MainActivity

From Dev

android: sending intent via intent

From Dev

Camera is not saving after taking picture

From Dev

Xamarin Forms - Resize Camera Picture

Related Related

  1. 1

    Determine if data was sent via intent

  2. 2

    Taking a picture with a camera intent and saving it to a file

  3. 3

    Picture file captured with camera intent empty for a while in onActivityResult

  4. 4

    Android: take camera picture intent remove confirmation dialog

  5. 5

    how to start camera intent and save a non-compressed picture

  6. 6

    Take picture only with android camera intent in Kotlin, not video

  7. 7

    Android Tablet Take Picture Camera Intent Activity Restarts

  8. 8

    Android- taking a picture for temporary use with the camera intent

  9. 9

    Taking Picture via intent to internal (app) storage returns null for bitmap

  10. 10

    Taking Picture via intent to internal (app) storage returns null for bitmap

  11. 11

    Sending SMS via an Intent and know if the SMS has been sent or not

  12. 12

    View a jpeg image sent via intent in an android application

  13. 13

    Change the text for buttons when taking picture via Camera using UIIMagePickerController

  14. 14

    Listening to Intent being sent

  15. 15

    android: camera is not taking a picture

  16. 16

    Camera Intent in Fragment

  17. 17

    Unable to StartActivityForResult() with camera Intent

  18. 18

    Camera Intent call onDestroy()

  19. 19

    Camera Intent destroys Activity

  20. 20

    Unable to StartActivityForResult() with camera Intent

  21. 21

    fileNotFoundException camera intent - Android

  22. 22

    Error using ZXing barcode scanner via intent from my custom camera view

  23. 23

    Android - Ensuring that photo orientation is preserved when taking photos via Camera Intent?

  24. 24

    Sending picture with intent to TypeApp Mail

  25. 25

    Camera intent doesn't show in intent chooser

  26. 26

    Activity - Intent sent info to MainActivity

  27. 27

    android: sending intent via intent

  28. 28

    Camera is not saving after taking picture

  29. 29

    Xamarin Forms - Resize Camera Picture

HotTag

Archive