【发布时间】:2017-09-13 21:18:34
【问题描述】:
以下代码是从设备中挑选图像。如何从设备中选择 pdf。以及如何在图像视图中显示 pdf?
bt_gall .setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent();
// Show only images, no videos or anything else
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
// Always show the chooser (if there are multiple options available)
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_REQUEST);
alertDialog.dismiss();
}
});
【问题讨论】:
-
ImageView不支持打印pdf -
pdf文件不是图片。