Skip to content

Commit

Permalink
Add basic wiring to TeacherQuestionResults
Browse files Browse the repository at this point in the history
This commit should add basic functionality for sending the gathered answer list to Thomas' TeacherQuestionResults fragment after the call time button is pressed. Removed display for my fragment. Still could use some clean up but shouldn't effect demo performance and I want to get it in asap!
  • Loading branch information
Perrofrijole authored and symbyte committed Nov 10, 2015
1 parent 9ec490c commit e7a7c73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private void callTime() {
//SHOULD BE COMPILING THE LIST OF ANSWERED QUESTIONS
for (IQuestion q :
TeacherQuestionService.answerList) {
adapter.add("Student answered: " + q.getAnswer()); //For displaying on this fragment
// adapter.add("Student answered: " + q.getAnswer()); //For displaying on this fragment
answerList.add(q); //Portion for sending
}

Expand Down

0 comments on commit e7a7c73

Please sign in to comment.