Searched refs:icon (Results 226 - 250 of 274) sorted by relevance

1234567891011

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java144 ImageView icon = (ImageView) child.findViewById(com.android.internal.R.id.icon);
145 setIconRunning(icon, running);
/frameworks/base/services/core/java/com/android/server/
H A DBatteryService.java72 * <p>&quot;icon-small&quot; - int, suggested small icon to use for this state</p>
497 int icon = getIconLocked(mBatteryProps.batteryLevel);
504 intent.putExtra(BatteryManager.EXTRA_ICON_SMALL, icon);
523 ", icon:" + icon + ", invalid charger:" + mInvalidCharger +
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java246 /** In case of icon load fail consider the
260 // set each item icon.
261 for (Bitmap icon : icons) {
262 mCmdParams.setIcon(icon);
263 if (icon == null && mloadIcon) {
350 // parse icon identifier
409 * If the tlv object doesn't contain text and the icon is not self
453 // parse icon identifier
530 // parse icon identifier
822 // parse icon identifie
[all...]
/frameworks/base/core/java/android/widget/
H A DToolbar.java99 * toolbars than on their application icon. The use of application icon plus title as a standard
761 * Set the icon to use for the toolbar's navigation button.
763 * <p>The navigation button appears at the start of the toolbar if present. Setting an icon
766 * <p>If you use a navigation icon you should also set a description for its action using
779 * Set the icon to use for the toolbar's navigation button.
781 * <p>The navigation button appears at the start of the toolbar if present. Setting an icon
784 * <p>If you use a navigation icon you should also set a description for its action using
788 * @param icon Drawable to set, may be null to clear the icon
792 setNavigationIcon(@ullable Drawable icon) argument
851 setOverflowIcon(@ullable Drawable icon) argument
[all...]
H A DActivityChooserView.java774 // Set the icon
775 ImageView iconView = (ImageView) convertView.findViewById(R.id.icon);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java767 public MessageFooter(int itemViewType, int icon, String message) { argument
769 mIcon = icon;
789 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
791 icon.setImageResource(mIcon);
931 // Always throw MIME icon into place, even when a thumbnail is being
979 // No summary needed if icon speaks for itself
990 // Directories showing thumbnails in grid mode get a little icon
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java117 * toolbars than on their application icon. The use of application icon plus title as a standard
772 * Set the icon to use for the toolbar's navigation button.
774 * <p>The navigation button appears at the start of the toolbar if present. Setting an icon
777 * <p>If you use a navigation icon you should also set a description for its action using
788 * Set the icon to use for the toolbar's navigation button.
790 * <p>The navigation button appears at the start of the toolbar if present. Setting an icon
793 * <p>If you use a navigation icon you should also set a description for its action using
797 * @param icon Drawable to set, may be null to clear the icon
799 setNavigationIcon(@ullable Drawable icon) argument
856 setOverflowIcon(@ullable Drawable icon) argument
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java1982 Drawable icon = null;
1988 icon = getResources().getDrawable(R.drawable.ic_menu_savetopdf);
1996 icon = getResources().getDrawable(R.drawable.ic_menu_savetopdf);
2006 icon = packageInfo.applicationInfo.loadIcon(getPackageManager());
2025 ImageView iconView = (ImageView) convertView.findViewById(R.id.icon);
2026 if (icon != null) {
2027 iconView.setImageDrawable(icon);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java234 for (File icon : unclaimedIcons) {
235 Slog.w(TAG, "Deleting orphan icon " + icon);
236 icon.delete();
484 // Persist app icon if changed since last written
490 if (LOGD) Slog.w(TAG, "Writing changed icon " + appIconFile);
496 Slog.w(TAG, "Failed to write icon " + appIconFile + ": " + e.getMessage());
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java476 // convert icon metadata to legacy format for older clients
667 n.icon = smallIcon.getResId();
693 // convert icon metadata to legacy format for older clients
H A DZenModeConfig.java101 private static final String CONDITION_ATT_ICON = "icon";
501 final int icon = safeInt(parser, CONDITION_ATT_ICON, -1);
505 return new Condition(id, summary, line1, line2, icon, state, flags);
517 out.attribute(null, CONDITION_ATT_ICON, Integer.toString(c.icon));
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java286 engine.icon = service.getIconResource();
/frameworks/base/media/java/android/media/
H A DMediaRouter.java1693 * Get the icon representing this route.
1694 * This icon will be used in picker UIs if available.
1696 * @return the icon representing this route or null if no icon is available
2078 * Set an icon that will be used to represent this route.
2079 * The system may use this icon in picker UIs or similar.
2081 * @param icon icon drawable to use to represent this route
2083 public void setIconDrawable(Drawable icon) { argument
2084 mIcon = icon;
2393 setIconDrawable(Drawable icon) argument
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DTethering.java437 /* We now have a status bar icon for WifiTethering, so drop the notification */
447 private void showTetheredNotification(int icon) { argument
455 if (mLastNotificationId == icon) {
484 mTetheredNotificationBuilder.setSmallIcon(icon)
488 mLastNotificationId = icon;
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl221 void setUserIcon(in ComponentName admin, in Bitmap icon);
/frameworks/base/core/java/android/content/
H A DIntent.java267 * &lt;application android:icon="@drawable/app_notes"
729 * The name of the extra used to define the icon, as a Bitmap, of a shortcut.
735 * The name of the extra used to define the icon, as a ShortcutIconResource, of a shortcut.
744 * Represents a shortcut/live folder icon resource.
753 * The package name of the application containing the icon.
758 * The resource name of the icon, including package, name and type.
767 * @param resourceId The resource identifier for the icon.
769 * and icon resource identifier.``
772 ShortcutIconResource icon = new ShortcutIconResource();
773 icon
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java1634 * Gets the resource ID for the proper presence icon.
1636 * @param status the status to get the icon for
1637 * @return the resource ID for the proper presence icon
1663 * Sets a presence icon to the proper graphic
1665 * @param icon the icon to to set
1670 public static final void setPresenceIcon(ImageView icon, int serverStatus) { argument
1671 icon.setImageResource(getPresenceIconResourceId(serverStatus));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DUserSwitcherController.java669 Bitmap icon = UserIcons.convertToBitmap(UserIcons.getDefaultUserIcon(
671 mUserManager.setUserIcon(id, icon);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java160 Drawable icon; field in class:TrustManagerService.AgentInfo
259 agentInfo.icon = resolveInfo.loadIcon(pm);
/frameworks/base/tools/aapt/
H A DCommand.cpp926 printf(" label='%s' icon='%s'\n",
936 printf(" label='%s' icon='%s' banner='%s'\n",
1105 String8 icon = AaptXml::getResolvedAttribute(res, tree, ICON_ATTR, local
1107 if (icon != "") {
1108 printf("application-icon-%d:'%s'\n", densities[i],
1109 ResTable::normalizeForOutput(icon.string()).string());
1114 String8 icon = AaptXml::getResolvedAttribute(res, tree, ICON_ATTR, &error); local
1116 fprintf(stderr, "ERROR getting 'android:icon' attribute: %s\n",
1136 printf("icon='%s'", ResTable::normalizeForOutput(icon
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java865 // default icon.
866 Log.w("PackageManager", "Failure retrieving icon 0x"
976 public Drawable getUserBadgedIcon(Drawable icon, UserHandle user) { argument
979 return icon;
982 return getBadgedDrawable(icon, badgeIcon, null, true);
1295 // default icon.
1318 // default icon.
2069 dr = getDrawable(itemInfo.packageName, itemInfo.icon, appInfo);
H A DDialog.java303 mWindow.setDefaultIcon(info.icon);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java1977 * Starts the highlight (making it fully opaque) animation on an icon.
1979 private void startHighlightIconAnimation(final KeyguardAffordanceView icon) { argument
1980 icon.setImageAlpha(1.0f, true, KeyguardAffordanceHelper.HINT_PHASE1_DURATION,
1984 icon.setImageAlpha(icon.getRestingAlpha(),
/frameworks/base/services/core/java/com/android/server/am/
H A DServiceRecord.java445 // icon, but this used to be able to slip through, so for
450 + ") with a broken notification (no icon: "
467 notiBuilder.setSmallIcon(appInfo.icon);
501 // Notifications whose icon is 0 are defined to not show
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java452 public Drawable getUserBadgedIcon(Drawable icon, UserHandle user) { argument

Completed in 833 milliseconds

1234567891011