Theatre Layout Image In Android
I want to make a theatre layout image (similar to the one found in many ticket booking apps) in which the seat color change when user clicks on it. Also, the booked and available
Solution 1:
You could create one Button for each seat. This Button could show an image for example an icon for a seat. If the user clicks on it, another icon could be set for the clicked button in the onClick()
method. This other icon could be the icon for available seats but in another color.
The layout of the seats in a theatre could be achieved by the positioning of the buttons.
Post a Comment for "Theatre Layout Image In Android"