Hello,
i have some imageview (background come from internet).
url : mywebsite/thumb/image.jpg
but i want to see them in big size (url : mywebsite/bigSize/image.jpg
Here is the code
How can i do to send in Activity2 the BigSize and not the thumb ?
i try to find with iv the name of the jpg... and after use httputils but i don't have succes to have this name
if i use : iv.bitmap it's not image.jpg but android.graphics.bitmap@4285b10
i have some imageview (background come from internet).
url : mywebsite/thumb/image.jpg
but i want to see them in big size (url : mywebsite/bigSize/image.jpg
Here is the code
B4X:
Sub img_Click
Dim iv As ImageView
iv = Sender
Dim bd As BitmapDrawable
bd = iv.Background
Activity2.bmp = bd.Bitmap
StartActivity(Activity2)
End Sub
How can i do to send in Activity2 the BigSize and not the thumb ?
i try to find with iv the name of the jpg... and after use httputils but i don't have succes to have this name
if i use : iv.bitmap it's not image.jpg but android.graphics.bitmap@4285b10
Last edited: