Home
last modified time | relevance | path

Searched refs:questionObject (Results 1 – 1 of 1) sorted by relevance

/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
DMainActivity.java227 public static Question fromJson(JSONObject questionObject, int questionIndex) in fromJson() argument
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); in fromJson()
230 JSONArray answersJsonArray = questionObject.getJSONArray(JsonUtils.JSON_FIELD_ANSWERS); in fromJson()
235 int correctIndex = questionObject.getInt(JsonUtils.JSON_FIELD_CORRECT_INDEX); in fromJson()
267 JSONObject questionObject = jsonArray.getJSONObject(i); in readQuizFromFile() local
268 Question question = Question.fromJson(questionObject, mQuestionIndex++); in readQuizFromFile()