use of com.instructure.candroid.adapter.QuizMatchSpinnerAdapter in project instructure-android by instructure.
the class QuizMatchingBinder method bind.
public static void bind(final QuizMatchingViewHolder holder, final QuizSubmissionQuestion quizSubmissionQuestion, final int courseColor, final int position, final boolean shouldLetAnswer, final Context context, final CanvasWebView.CanvasEmbeddedWebViewCallback embeddedWebViewCallback, final CanvasWebView.CanvasWebViewClientCallback webViewClientCallback, final QuizPostMatching callback, final QuizToggleFlagState flagStateCallback) {
if (holder == null) {
return;
}
setupViews(holder, quizSubmissionQuestion, position, context, embeddedWebViewCallback, webViewClientCallback);
LayoutInflater inflater = LayoutInflater.from(context);
// add answers to the answer container
int index = 0;
for (final QuizSubmissionAnswer answer : quizSubmissionQuestion.getAnswers()) {
final LinearLayout answerWrapper = (LinearLayout) inflater.inflate(R.layout.quiz_matching_answer, null, false);
final TextView answerTextView = (TextView) answerWrapper.findViewById(R.id.text_answer);
final Spinner spinner = (Spinner) answerWrapper.findViewById(R.id.answer_spinner);
ArrayList<QuizSubmissionMatch> list = new ArrayList<>();
QuizSubmissionMatch firstMatch = new QuizSubmissionMatch();
firstMatch.setText(context.getString(R.string.quizMatchingDefaultDisplay));
list.add(firstMatch);
for (QuizSubmissionMatch match : quizSubmissionQuestion.getMatches()) {
list.add(match);
}
QuizMatchSpinnerAdapter adapter = new QuizMatchSpinnerAdapter(context, android.R.layout.simple_spinner_item, list);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
if (!TextUtils.isEmpty(answer.getHtml())) {
answerTextView.setVisibility(View.GONE);
setPreviouslySelectedAnswer(quizSubmissionQuestion, answer, spinner, list);
} else if (!TextUtils.isEmpty(answer.getText())) {
answerTextView.setText(answer.getText());
setPreviouslySelectedAnswer(quizSubmissionQuestion, answer, spinner, list);
}
final Drawable courseColorFlag = ColorKeeper.getColoredDrawable(context, R.drawable.vd_bookmark_filled, courseColor);
if (quizSubmissionQuestion.isFlagged()) {
holder.flag.setImageDrawable(courseColorFlag);
} else {
holder.flag.setImageDrawable(ColorKeeper.getColoredDrawable(context, R.drawable.vd_navigation_bookmarks, context.getResources().getColor(R.color.defaultTextGray)));
}
if (shouldLetAnswer) {
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) {
// post the answer to the api
HashMap<Long, Integer> answerMap = new HashMap<>();
if (((QuizSubmissionMatch) adapterView.getSelectedItem()).getMatchId() != 0) {
answerMap.put(answer.getId(), ((QuizSubmissionMatch) adapterView.getSelectedItem()).getMatchId());
callback.postMatching(holder.questionId, answerMap);
}
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
}
});
holder.flag.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (quizSubmissionQuestion.isFlagged()) {
// unflag it
holder.flag.setImageDrawable(ColorKeeper.getColoredDrawable(context, R.drawable.vd_navigation_bookmarks, context.getResources().getColor(R.color.defaultTextGray)));
flagStateCallback.toggleFlagged(false, quizSubmissionQuestion.getId());
quizSubmissionQuestion.setFlagged(false);
} else {
// flag it
holder.flag.setImageDrawable(courseColorFlag);
flagStateCallback.toggleFlagged(true, quizSubmissionQuestion.getId());
quizSubmissionQuestion.setFlagged(true);
}
}
});
} else {
holder.flag.setEnabled(false);
}
holder.answerContainer.addView(answerWrapper);
if (index == quizSubmissionQuestion.getAnswers().length - 1) {
// if we're on the last answer remove the bottom divider
answerWrapper.findViewById(R.id.divider).setVisibility(View.GONE);
} else {
answerWrapper.findViewById(R.id.divider).setVisibility(View.VISIBLE);
index++;
}
}
}
Aggregations