New page is open with full image when I click on particular image using PhotoSwipe Jquery

791 Views Asked by At

I am sucess to display images from sdcard in grid view using PhotoSwipe. Now I want to click on any image from the grid view and that image is shown in next page with full display. But I have problem that I have no fix image so that I cant use direct image name in "href" and "src" tag, it is dynamic. So how I do this using PhotoSwipe, its urgent. In previous post I find out the solution as Click here to view image, but I have no particular image, my image is dynamic came from sdcard.

Thanks in advance....

1

There are 1 best solutions below

2
On

IF you find the position of Image it is easy to go ahead.

After getting the position you will redirect it to the particular activity.

...you can find your position from the below code.

  GridView gridview = (GridView) 
findViewById(R.id.gridview); 
            gridview.setAdapter(new ImageAdapter(this)); 
            gridview.setOnItemClickListener(new OnItemClickListener() 
{ 
                public void onItemClick(AdapterView<?> parent, View v, 
int position, long id) { 
                    Toast.makeText(HelloGridView.this, "" + position, 
Toast.LENGTH_SHORT).show(); 
                } 
            }); 
        } 
    } 

I used toast for only display the position ... once you get your position just move it with intent to your next activity.