2

I'm new in android, here i'm using Gallery to show images in my application, working fine but the problem is now I want show some option like remove images from gallery on the LongClick event of the user.

Lasse V. Karlsen
  • 380,855
  • 102
  • 628
  • 825
dIvYaNsH sInGh
  • 1,943
  • 3
  • 21
  • 40

1 Answers1

1

This answer may help you.

Use code to set onLongClickListener on Gallery object

gal.setOnLongClickListener(new OnLongClickListener() 
{

    @Override
    public boolean onLongClick(View v) 
    {
        // Remove element from array and call adapter.notifysetdatachanged() to update
        // Gallery

        return false;
    }
});
Community
  • 1
  • 1
Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87