如何实现单击时变为全屏的图像滑块?

How to implement an Image Slider that becomes full screen when clicked?

如何添加点击后变成全屏的图片滑块? 我希望能够以全屏模式预览图像并能够共享或缩放图像。我可以通过哪些方式实现这一点?

使用此 lib 缩放图像,要共享图像,您可以使用共享意图

Bitmap icon = mBitmap;
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
icon.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
File f = new File(Environment.getExternalStorageDirectory() + File.separator + "temporary_file.jpg");
try {
    f.createNewFile();
    FileOutputStream fo = new FileOutputStream(f);
    fo.write(bytes.toByteArray());
} catch (IOException e) {                       
        e.printStackTrace();
}
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/temporary_file.jpg"));
startActivity(Intent.createChooser(share, "Share Image"));