Home | History | Annotate | Download | only in com.example.android.wearable.quiz

Lines Matching defs:question

25 import static com.example.android.wearable.quiz.Constants.QUESTION;
61 * If a new question is created, this builds a new notification for it.
62 * Otherwise, if a question is deleted, this cancels the corresponding notification.
68 private static final int QUIZ_REPORT_NOTIF_ID = -1; // Never used by question notifications.
103 // the question's status (i.e. was the answer right or wrong or left blank).
106 String question = dataMap.getString(QUESTION);
115 // First page of notification contains question as Big Text.
117 .setBigContentTitle(getString(R.string.question, questionNum))
118 .bigText(question);
129 .setContentTitle(question)
156 // URI's are of the form "/question/0", "/question/1" etc.
157 // We use the question index as the notification id.
173 // Remove any lingering question notifications.