String cardpath = Global.directory + longPressBtn.getText().toString() + ".jpg";
System.out.println(cardpath);
AlertDialog imageDialog = new AlertDialog.Builder(mContext).create();
LayoutInflater inflater = LayoutInflater.from(mContext);
imageDialog.setTitle("Title");
View view = inflater.inflate(R.layout.cardpopup, null);
File imgFile = new File("cardpath");
Bitmap myBitmap = BitmapFactory.decodeFile(cardpath);
ImageView myImage = new ImageView(mContext);
myImage.setImageBitmap(myBitmap);
imageDialog.setView(view);
imageDialog.show();
按下按钮时,我正在尝试弹出一个带有图像的弹出窗口。上面的代码是我的尝试无效。 cardpath
变量应该是图像绝对路径的字符串。但是,按下按钮时不会显示任何内容。由cardpath定义的图像确实存在,并且我有外部存储读取权限,所以我不确定出了什么问题。
答案 0 :(得分:0)
由于我没有看到您缩放图像,请检查您的logcat - 您可能会看到一行OpenGLRenderer = Bitmap太大而无法上传到纹理中。