我有一个要求,就像我有一个自定义的水平ScrollView文本和图像(图像是不可见的)和按钮来启动相机意图。
当我选择任何项目时,我得到该滚动项目的ID。当我点击按钮捕捉照片时,我的代码正在拍照并从sdcard获取路径。但是即使我使用imageView.setVisibility(View.VISIBLE),图像视图也无法获得可见性。这行代码。
ImageView我在主类中全局声明。
请在这个问题上给我一个想法。
=============================================== ==============================
这是我在
上捕捉照片后所做的代码BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 5;
bb = BitmapFactory.decodeFile(imageFile.getAbsolutePath(),
options);
MediaStore.Images.Media.insertImage(getContentResolver(),
bb, null, null);
System.out.println("Bitmap is : " + bb);
System.out.println("Tab Id to keep photo is : " + tabId);
imageView.setImageBitmap(bb);
imageView.setVisibility(View.VISIBLE);
filePath = imageFile.getAbsolutePath();
谢谢, UdaySekhar