I have these ImageViews/ImageButtons, and when I click I want to display my selection into an empty slot for example.
There are six options available to click but I only need to choose four, I want to display anyone of these six in my empty slots I have available.
R.drawable.blue
R.drawable.red
R.drawable.green
R.drawable.yellow
R.drawable.brown
R.drawable.purple
They are the image buttons.
I already have an empty "slot" image:
R.drawable.empty_Slot
I know that onClick() is what I need and then I need to set that click to the empty_slot I have but I'm confused how I would implement this if I could get any guidance thank you.