android image gallery-swapping无效

时间:2013-01-09 10:00:26

标签: android image gallery image-gallery android-gallery

我是android新手。我使用Intent显示全屏图像并在图像之间滑动。代码如下:

(我正在使用网格显示图像,一旦我点击网格中的图像,我正在调用意图)

Gridview_sponsor = (GridView) findViewById(R.id.gridViewSponsor);

Gridview_sponsor
                    .setOnItemLongClickListener(new OnItemLongClickListener() {

                        public boolean onItemLongClick(AdapterView<?> arg0,
                                View arg1, int pos, long id) {
                            AlertDialog diaBox = AskOption(imagesName.get(pos)
                                    .toString());
                            diaBox.show();

                            return true;
                        }
                    });
            Gridview_sponsor.setOnItemClickListener(new OnItemClickListener() {
                public void onItemClick(AdapterView<?> arg0, View arg1,
                        int position, long arg3) {
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(
                            Uri.parse("file://" + imagesName.get(position)),
                            "image/*");
                    startActivity(intent);

                }
            });

以前它运作正常。但在卸载现有应用程序后,它会停止交换。

在上面的代码imagesName.get(position)中包含我分配给ACTION_VIEW意图的图片路径。但它只是全屏显示图像并放大,缩小功能工作正常。但图像没有从该文件夹刷卡

0 个答案:

没有答案