проверьте это ................. метод onClick вашего эскиза, вы можете начать новую активность в полноэкранном режиме:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
и передайте изображение uri или что-то, что указывает источник изображения, на новое действие:
Intent intent = new Intent(YouActivity.this, FullImage.class);
intent.putExtra("imageUri", R.drawable.yourImage); // or the path to your image.
в классе активности FullImage
ImageView icon = (ImageView) findViewById(R.id.myImage);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inTempStorage = new byte[3*1024];
Bitmap ops = BitmapFactory.decodeFile(path, options); // instead path you can get an image from previous activity.
icon.setImageBitmap(ops);