• Home
  • Raw
  • Download

Lines Matching refs:info

208                     final HistoricalNotificationInfo info = new HistoricalNotificationInfo();  in loadNotifications()  local
209 info.pkg = sbn.getPackageName(); in loadNotifications()
210 info.user = sbn.getUserId(); in loadNotifications()
211 info.icon = loadIconDrawable(info.pkg, info.user, sbn.getNotification().icon); in loadNotifications()
212 info.pkgicon = loadPackageIconDrawable(info.pkg, info.user); in loadNotifications()
213 info.pkgname = loadPackageName(info.pkg); in loadNotifications()
215info.title = sbn.getNotification().extras.getString(Notification.EXTRA_TITLE); in loadNotifications()
216 if (info.title == null || "".equals(info.title)) { in loadNotifications()
217info.title = sbn.getNotification().extras.getString(Notification.EXTRA_TEXT); in loadNotifications()
220 if (info.title == null || "".equals(info.title)) { in loadNotifications()
221 info.title = sbn.getNotification().tickerText; in loadNotifications()
224 if (info.title == null || "".equals(info.title)) { in loadNotifications()
225 info.title = info.pkgname; in loadNotifications()
227 info.timestamp = sbn.getPostTime(); in loadNotifications()
228 info.priority = sbn.getNotification().priority; in loadNotifications()
229 logd(" [%d] %s: %s", info.timestamp, info.pkg, info.title); in loadNotifications()
231 info.active = (resultset == active); in loadNotifications()
233 if (info.user == UserHandle.USER_ALL in loadNotifications()
234 || info.user == currentUserId) { in loadNotifications()
235 list.add(info); in loadNotifications()
278 ApplicationInfo info = mPm.getApplicationInfo(pkg, in loadPackageName() local
280 if (info != null) return mPm.getApplicationLabel(info); in loadPackageName()
314 final HistoricalNotificationInfo info = getItem(position); in getView() local
315 logd("getView(%s/%s)", info.pkg, info.title); in getView()
317 row.setTag(info); in getView()
320 if (info.icon != null) { in getView()
321 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(info.icon); in getView()
323 if (info.pkgicon != null) { in getView()
324 ((ImageView) row.findViewById(R.id.pkgicon)).setImageDrawable(info.pkgicon); in getView()
327 ((DateTimeView) row.findViewById(R.id.timestamp)).setTime(info.timestamp); in getView()
330 ((TextView) row.findViewById(android.R.id.title)).setText(info.title); in getView()
333 ((TextView) row.findViewById(R.id.pkgname)).setText(info.pkgname); in getView()
341 row.setAlpha(info.active ? 1.0f : 0.5f); in getView()
348 startApplicationDetailsActivity(info.pkg); in getView()