Searched defs:td (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java160 void loadThumbnailAndIcon(TaskDescription td) { argument
164 ActivityManager.TaskThumbnails thumbs = am.getTaskThumbnails(td.persistentTaskId);
165 Drawable icon = getFullResIcon(td.resolveInfo, pm);
168 + td + ": " + thumbs.mainThumbnail);
169 synchronized (td) {
171 td.setThumbnail(thumbs.mainThumbnail);
173 td.setThumbnail(mDefaultThumbnailBackground);
176 td.setIcon(icon);
178 td.setLoaded(true);
322 TaskDescription td
[all...]
H A DRecentsPanelView.java194 final TaskDescription td = mRecentTaskDescriptions.get(index);
196 holder.labelView.setText(td.getLabel());
197 holder.thumbnailView.setContentDescription(td.getLabel());
198 holder.loadedThumbnailAndIcon = td.isLoaded();
199 if (td.isLoaded()) {
200 updateThumbnail(holder, td.getThumbnail(), true, false);
201 updateIcon(holder, td.getIcon(), true, false);
205 holder.thumbnailView.setTag(td);
207 holder.taskDescription = td;
573 void onTaskThumbnailLoaded(TaskDescription td) { argument
[all...]

Completed in 53 milliseconds