Let's say that we assign a bitmap to an ImageView like this:
Is it possible to, later, retrieve those parameters, SomeDir and SomeFilename, by looking at some property of ImageView1?
Like, for example:
Or has the bitmap been abstracted away from its original source?
B4X:
ImageView1.Bitmap = LoadBitmap(SomeDir, SomeFilename)
Like, for example:
B4X:
Dim b As Bitmap
b = ImageView1.Bitmap
Dim Dname, Fname As String
Dname = b.?
Fname = b.?