0

やあみんな私はクイズを開発しています.50の質問が保存されていて、10の質問だけを表示したい..質問はランダムに表示されます..しかし、私の問題はクイズに表示するのは10の質問でなければならないことです.私...助けは本当に感謝しています..

public class Question1 extends Activity {



Intent menu = null;
BufferedReader bReader = null;
static JSONArray quesList = null;
static int index = 50;



/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.question10);

    Thread thread = new Thread() {
        public void run() {
            try {
                Thread.sleep(1 * 1000);
                finish();
                loadQuestions();
                Intent intent = new Intent(Question1.this,
                        Question2.class);
                Question1.this.startActivity(intent);
            } catch (Exception e) {
            }
        }
    };
    thread.start();

}

private void loadQuestions() throws Exception {
    try {



        InputStream questions = this.getBaseContext().getResources()
                .openRawResource(R.raw.questions);
        bReader = new BufferedReader(new InputStreamReader(questions));
        StringBuilder quesString = new StringBuilder();
        String aJsonLine = null;
        while ((aJsonLine = bReader.readLine()) != null) {
            quesString.append(aJsonLine);
        }

        Log.d(this.getClass().toString(), quesString.toString());
        JSONObject quesObj = new JSONObject(quesString.toString());
        quesList = quesObj.getJSONArray("Questions");
        Log.d(this.getClass().getName(),
                "Num Questions " + quesList.length());


    } catch (Exception e) {

    } finally {
        try {
            bReader.close();
        } catch (Exception e) {
            Log.e("", e.getMessage().toString(), e.getCause());
        }

    }

}

public static JSONArray getQuesList()throws JSONException{

      Random rnd = new Random();

        for (int i = quesList.length() - 1; i >= 0; i--)
        {
          int j = rnd.nextInt(i + 1);
          // Simple swap
          Object object = quesList.get(j);
          quesList.put(j, quesList.get(i));
          quesList.put(i, object);
        }
        return quesList;


}
4

2 に答える 2

2

すべてのクイズで動的な10の質問が必要なため、を使用してArrayListをCollections.shuffle(YourList)シャッフルし、シャッフルされたリストから最初の10個を取得できます。

ただし、JSONArrayを使用しているため、JSONArrayを反復処理して、ArrayListを準備する必要があります。そうすれば、を使用できるようになりますshuffle()

アップデート:

ogzdの回答を参照してください。質問がある場合は上記List<JsonObject>のようにシャッフルメソッドを呼び出すだけです。

Collections.shuffle(questions);

これで、質問リストがシャッフルされるので、最初の10個のアイテムをコピーまたは取得する必要があります。

于 2013-02-22T07:34:45.430 に答える
0

試す:

 List<JsonObject> questions = new ArrayList<JsonObject>();
 int n = Math.min(10, quesList.length());
 for(int i = 0; i < n; i++) {
     JsonObject question = quesList.getJsonObject(i);
     questions.add(question);
 }
于 2013-02-22T07:26:34.567 に答える