Please help a "dummy" with retrieving a Bitmap from an intent. The library defines the key as:
public static final String KEY_PHOTO = "photo";
And this is how it gets the Bitmap from the intent to add it to an ImageView:
if (getIntent().hasExtra(KEY_PHOTO)) {
((ImageView) findViewById(R.id.view_photo)).setImageBitmap((Bitmap) getIntent().getParcelableExtra(KEY_PHOTO));
So, what would B4A equivalent be to extract the Bitmap from the returned intent (I can already extract all the Strings in the returned intent). Should it be as below?
Dim jo As JavaObject = i
Dim mbm As Bitmap = jo.RunMethod("getParcelableExtra", Array As Object("photo"))
I am just very in(tent)experienced....