I've got a gallery (images) in a RelativeLayout
and if the users click on it, three Buttons
and a TextView
appears. I made it with the visible-property, that means the three Buttons
and the TextView
are declared as invisible in the xml-file and later the onClick()
of the Gallery
makes it visible with setVisibility(0)
.That works fine, but I want the Gallery
to stop scrolling during the Buttons
and the TextView
are in front.
Is there any way to do this?