Lines Matching full:views
45 * Helper class to fill in the views in {@link PhoneCallDetailsViews}.
79 /** Fills the call details views with content. */
80 public void setPhoneCallDetails(PhoneCallDetailsViews views, PhoneCallDetails details) {
82 views.callTypeIcons.clear();
86 views.callTypeIcons.add(details.callTypes[index]);
93 views.callTypeIcons.setShowVideo(
95 views.callTypeIcons.requestLayout();
96 views.callTypeIcons.setVisibility(View.VISIBLE);
109 setCallCountAndDate(views, callCount, callLocationAndDate);
115 views.callAccountLabel.setVisibility(View.VISIBLE);
116 views.callAccountLabel.setText(accountLabel);
120 views.callAccountLabel.setTextColor(mContext.getResources().getColor(defaultColor));
122 views.callAccountLabel.setTextColor(color);
125 views.callAccountLabel.setVisibility(View.GONE);
135 views.nameView.setTextDirection(View.TEXT_DIRECTION_LTR);
140 views.nameView.setText(nameText);
143 views.voicemailTranscriptionView.setText(details.transcription);
144 views.voicemailTranscriptionView.setVisibility(View.VISIBLE);
146 views.voicemailTranscriptionView.setText(null);
147 views.voicemailTranscriptionView.setVisibility(View.GONE);
254 private void setCallCountAndDate(PhoneCallDetailsViews views, Integer callCount,
265 views.callLocationAndDate.setText(text);