0
我做了一個離線問答遊戲,在其中向用戶提出10個隨機問題。這些問題來自我的firebase db並保存在一個數組列表中。我的程序每次從數組列表中隨機選擇一個問題並顯示問題。這是我的一段代碼Android Studio,將離線遊戲轉換爲在線
public void askQuestion(){
Random rnd=new Random();
int index = rnd.nextInt(questionList.size());
Info theQuestion=questionList.get(index);
question.setText(theQuestion.getQuestion());
a.setText(theQuestion.getA());
b.setText(theQuestion.getB());
c.setText(theQuestion.getC());
d.setText(theQuestion.getD());
answer=theQuestion.getAnswer();
}
//Info is the name of the object for my questions. questionList is an arraylist of type info where I keep the all questions I got from firebase.
這是我的問題。
- 我讀到我應該使用谷歌播放服務在線製作遊戲。有更好的方法嗎?什麼是最好的開始(鏈接將不勝感激)
- 我可以在我的在線遊戲中使用此活動還是應該更改它?兩個用戶的隨機性是否相同?我想問他們同樣的問題。
請限制自己對每個帖子的單個問題。我回答了你下面最具體的問題。 –