How to include multiple RadioButtons?

0

I was interested in doing an APP with 30 personality profile questions, where each question will have two alternatives of choice. I thought about using RadioButton , but since there are 30 questions I would not like to include them all on the screen at one time, I would like to display only one question with two alternatives and each selection of one of the alternatives already called the other question.

Can this be done without creating 30 activities ?

I did not want to create this amount of activities , but if there is no way, it will be that way.

    
asked by anonymous 19.07.2017 / 16:28

1 answer

4

Birth of the principle you are talking about Apps for android ...

You can for example have the possible questions and answers in arrays, when the respondent loads a "next" button, which updates the values according to the array.

    
19.07.2017 / 16:52