I am developing application having a resemblance appearance like " Gallery application". When I click on image from the gallery... I want to fit image to whole screen.. I used this code..but it does not work . can you guide me for this ... Here is code for the same:
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
imgView.setMinimumWidth(width);
imgView.setMinimumHeight(height);
imgView.setMaxWidth(width);
imgView.setMaxHeight(height);