You cannot make a copy of the view itself. You can make another view with same layout and setting.
B4X:
Dim im as ImageView
'.....
Dim im2 as ImageView
dim p as panel = im.parent
p.addview(im2,im.left,im.top,im.width,im.height)
im2.gravity = im.gravity
im2.bitmap = im.bitmap
You cannot make a copy of the view itself. You can make another view with same layout and setting.
B4X:
Dim im as ImageView
'.....
Dim im2 as ImageView
dim p as panel = im.parent
p.addview(im2,im.left,im.top,im.width,im.height)
im2.gravity = im.gravity
im2.bitmap = im.bitmap