网格视图适配器不起作用?

时间:2014-04-26 07:47:29

标签: android android-intent android-camera android-sqlite android-arrayadapter

我无法找到适配器i的这个getview方法的解决方案。我正在尝试从网格视图中的相机拍摄的设置图像。我看到从网格视图中的相机拍摄的第一张图像,但是当第二张图像应用程序崩溃时。 这是getview()方法

public View getView(int arg0, View arg1, ViewGroup arg2) {
        ImageView image = new ImageView(context);
        String path = list.get(arg0);
        Uri uri = Uri.parse(path);
         Uri uri = Uri.parse(list.get(arg0));
        image.setImageURI(null);
        image.setImageURI(uri);
        image.setScaleType(ImageView.ScaleType.CENTER_CROP);
        image.setLayoutParams(new GridView.LayoutParams(70, 70));
        return image;
    }

我还发布了完整代码here

0 个答案:

没有答案