Back to project page AndroidWearable-Samples.
The source code is released under:
Apache License
If you think the Android project AndroidWearable-Samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.android.wearable.quiz; /*from w w w . ja v a 2 s. c o m*/ /** Constants used in the companion app. */ public final class Constants { private Constants() { } public static final String ANSWERS = "answers"; public static final String CHOSEN_ANSWER_CORRECT = "chosen_answer_correct"; public static final String CORRECT_ANSWER_INDEX = "correct_answer_index"; public static final String QUESTION = "question"; public static final String QUESTION_INDEX = "question_index"; public static final String QUESTION_WAS_ANSWERED = "question_was_answered"; public static final String QUESTION_WAS_DELETED = "question_was_deleted"; public static final String NUM_CORRECT = "num_correct"; public static final String NUM_INCORRECT = "num_incorrect"; public static final String NUM_SKIPPED = "num_skipped"; public static final String QUIZ_ENDED_PATH = "/quiz_ended"; public static final String QUIZ_EXITED_PATH = "/quiz_exited"; public static final String RESET_QUIZ_PATH = "/reset_quiz"; }