OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:streamItem
(Results
1 - 5
of
5
) sorted by null
/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
...]
/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
,
/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
726
StreamItemEntry
streamItem
= new StreamItemEntry(cursor);
727
streamItemsById.put(
streamItem
.getId(),
streamItem
);
728
streamItems.add(
streamItem
);
736
for (StreamItemEntry
streamItem
: streamItems) {
737
streamItem
.decodeHtml(getContext());
[
all
...]
Completed in 36 milliseconds