HomeSort by relevance Sort by last modified time
    Searched refs:streamItem (Results 1 - 8 of 8) sorted by null

  /packages/apps/Contacts/tests/src/com/android/contacts/detail/
ContactDetailDisplayUtilsTest.java 54 StreamItemEntry streamItem = getTestBuilder().setComment("1 comment").build(getContext());
55 View streamItemView = addStreamItemText(streamItem);
60 StreamItemEntry streamItem = getTestBuilder().setComment("1 <b>comment</b>")
62 View streamItemView = addStreamItemText(streamItem);
67 StreamItemEntry streamItem = getTestBuilder().setComment(null).build(getContext());
68 View streamItemView = addStreamItemText(streamItem);
110 private View addStreamItemText(StreamItemEntry streamItem) {
111 return ContactDetailDisplayUtils.addStreamItemText(getContext(), streamItem,
StreamItemAdapterTest.java 120 private void assertStreamItemViewHasTag(StreamItemEntry streamItem) {
125 // The streamItem itself should be in the tag.
126 assertSame(streamItem, streamItemTag);
  /packages/apps/Contacts/src/com/android/contacts/detail/
StreamItemAdapter.java 101 final StreamItemEntry streamItem = (StreamItemEntry) getItem(position);
104 manager.getAccountType(streamItem.getAccountType(), streamItem.getDataSet());
107 mInflater, mContext, convertView, streamItem,
117 contentView.setTag(streamItem);
ContactDetailDisplayUtils.java 71 public final StreamItemEntry streamItem;
74 public StreamPhotoTag(StreamItemEntry streamItem, StreamItemPhotoEntry streamItemPhoto) {
75 this.streamItem = streamItem;
81 ContentUris.appendId(builder, streamItem.getId());
255 View convertView, StreamItemEntry streamItem, View.OnClickListener photoClickListener) {
266 final List<StreamItemPhotoEntry> photos = streamItem.getPhotos();
270 addStreamItemText(context, streamItem, container);
312 loadPhoto(contactPhotoManager, streamItem, photos.get(i), imageRow,
317 loadPhoto(contactPhotoManager, streamItem, photos.get(i + 1), imageRow
    [all...]
ContactDetailUpdatesFragment.java 83 final AccountType accountType = getAccountTypeForStreamItemEntry(tag.streamItem);
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactBadgeUtil.java 41 public static CharSequence getSocialDate(StreamItemEntry streamItem, Context context) {
43 final Long statusTimestamp = streamItem.getTimestamp();
59 final String statusLabelRes = streamItem.getLabelRes();
60 final String statusResPackage = streamItem.getResPackage();
  /packages/apps/Contacts/src/com/android/contacts/socialwidget/
SocialWidgetProvider.java 204 StreamItemEntry streamItem = streamItems.get(0);
205 CharSequence status = HtmlUtils.fromHtml(context, streamItem.getText());
220 manager.getAccountType(streamItem.getAccountType(), streamItem.getDataSet());
223 streamItem.getId());
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 727 StreamItemEntry streamItem = new StreamItemEntry(cursor);
728 streamItemsById.put(streamItem.getId(), streamItem);
729 streamItems.add(streamItem);
737 for (StreamItemEntry streamItem : streamItems) {
738 streamItem.decodeHtml(getContext());
    [all...]

Completed in 212 milliseconds