another app you wrote? or another app like whatsapp...
if it is an app your wrote and you know the path then just load it from that path.
you saved your image to DirRootExternal so load it from there like this:
B4X:
Dim bmp As Bitmap
bmp.Initialize(File.DirRootExternal,"picture1.jpg")
Activity.SetBackgroundImage(bmp)
if you want other apps to find it on the phone gallery you can use this code (put it after you save your image):
B4X:
Dim i As Intent
i.Initialize("android.intent.action.MEDIA_SCANNER_SCAN_FILE", _
"file://" & File.Combine(File.DirRootExternal, "picture1.jpg"))
Dim p As Phone
p.SendBroadcastIntent(i)