You would be right; SL4A APIs such as makeIntent()
, startActivityForResult()
and startActivityForResultIntent()
will be of interest to you. It's just a quick Google or two to find the Intent details for fetching images, eg., android pick images from gallery
Personally I tried various alternative of:
intent = droid.makeIntent('ACTION_GET_CONTENT',"",'image/*')
result = droid.startActivityForResultIntent(intent)
But it didn't like me.... I got something along the lines of No activity found ...
, which would suggest the need to create an Intent Chooser, which is apparently impossible :/
Apologies that I can't be of much more use.
Good luck!