Android - 等待Volley响应完成并继续执行

时间:2016-05-06 18:52:28

标签: android android-volley

我需要执行一个Volley请求并等待响应解析它并返回它,但不知道如何实现这一点。 有人可以帮忙吗? 这是我的代码:

public void getWord(){
    final JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET, "http://ent-ifsi.com/Projet/Application_Android/pendu_android.php",
            new Response.Listener<JSONObject>() {
                @Override
                public void onResponse(JSONObject response) {

                    try {
                        JSONObject lesMots = response.getJSONObject("lesMots");

                        Iterator<?> keys = lesMots.keys();

                        while (keys.hasNext()) {
                            String key = (String) keys.next();
                            if (lesMots.get(key) instanceof JSONObject) {
                                JSONObject obj = (JSONObject) lesMots.get(key);
                                //Récupération des deux mots, anglais et français
                                String wordToFind = obj.getString("wordFrench").toUpperCase();
                                String wordEnglish = obj.getString("wordEnglish").toUpperCase();
                                //Mots mis dans un array respectif

                                listOfWordEnglish.add(wordEnglish);
                                listOfWordFrench.add(wordToFind);
                                container.removeAllViews();
                            }
                            numberOfWord++;

                        }

                    } catch (JSONException e) {
                        e.printStackTrace();
                        Toast.makeText(getApplicationContext(), e + "", Toast.LENGTH_LONG).show();
                    }

                }
            },


            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    Log.e("Volley", "ERROR");
                    Toast.makeText(getApplicationContext(), error + "", Toast.LENGTH_LONG).show();

                }
            }


    );
    queue.add(jsonObjectRequest);

}

每个阵列中有7个单词,但是当我试图进入我的initGame函数时,它说它们是空的,我猜它是因为凌空请求不是这么快! 如果有人能解释我该怎么做

这是我的initGame函数

`public void initGame() {
        win = false;
        found = 0;
        typed_word.setText("");
        image.setBackgroundResource(R.drawable.first);
        listOfLetters = new ArrayList<>();
        listOfWordFrench = new ArrayList<>();
        listOfWordEnglish = new ArrayList<>();
        getWord();

        for (int i = 0; i < listOfWordEnglish.size(); i++){
            System.out.println(i);
            String wordEnglish = listOfWordEnglish.get(i);
            wordEnglishPendu.setText(wordEnglish);
            word = listOfWordFrench.get(i);
            for (int x = 0; x < word.length(); x++) {
                TextView oneLetter = (TextView) getLayoutInflater().inflate(R.layout.textview, null);
                container.addView(oneLetter);

            }
        }
    }`

1 个答案:

答案 0 :(得分:3)

由于Volley是异步的,因此for下面的getWord()循环将在您的排球请求onResponse之前调用。

您的问题的解决方案是将for循环移至onResponse,您可以将其放在while循环之后。

希望它有所帮助!