Skip to content Skip to sidebar Skip to footer

Drawables Next To Buttons?

Ive been working on a simple app that has a feature where you can test your knowledge by answering multiple choice questions. After an answer is selected(by the radio button), i wa

Solution 1:

you can add an image beside every radiobutton, green check beside the correct answer and red X beside the wrong answer, make them all with setVisibility(GONE); programatically, and when you want to show the correct answers just setVisibility(VISIBLE) only for the correct answer and the chosen answer


Post a Comment for "Drawables Next To Buttons?"