I have two GalleryView widgets in my application. Gallery1 is always a part of the main UI and Gallery2 is defined in ViewStub which shows up only when any of the items on Gallery1 is long pressed. At this time, that item also should get dynamically added to Gallery2 on the ViewStub and Gallery2 refreshed to show selected item on it.
I am calling onItemLongClickListener to detect long presses on Gallery1 item, and inflating the ViewStub in onItemLongClick method. At the same time, I also want to add that new item to Gallery2. How can I achieve this?
Thanks,
Ab