In my Android App I have a Activity which show images which have following size 244 x 330. I want to show those images in full device width.
244 x 330
My layout f
Have you tried setting it programmatically via ImageView.setScaleType()?
ImageView.setScaleType()
setAdjustViewBounds( false ) might help as well.
setAdjustViewBounds( false )
Edit: sorry, I mis-read the question. Regardless, setAdjustViewBounds() still might help. Never used it though.
setAdjustViewBounds()