「ギャラリーアプリケーション」のような外観のアプリケーションを開発しています。ギャラリーから画像をクリックすると...画像を画面全体に合わせたい..このコードを使用しました..しかし、機能しません。これについて私を案内してくれませんか...これが同じコードです:
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
imgView.setMinimumWidth(width);
imgView.setMinimumHeight(height);
imgView.setMaxWidth(width);
imgView.setMaxHeight(height);