So far i have managed to display the contents of a row(4 columns) in specific textviews. But i want to display them in random. I use this
String answer1 = cur.getString(cur.getColumnIndex("ANSWER1"));
and on click the content change but always the data on column ANSWER1 shows in the first textview. What can i do to random display the 4 columns to the 4 textviews? E.g column 1 to textview 3, column 2 to textview 1 etc.I want everytime different data on textview 1.
----Edit----
Lets say i have one more column that idicates the number of the column the correct answer is.E.g if the correct answer is in the column "Answer3" the data in the column "CorrAnswer" is 3. I change the textviews above to buttons. Each button sends an integer. How can i check the correct answer when the texts on the buttons are shuffled?