/packages/apps/Launcher2/src/com/android/launcher2/ |
ApplicationInfo.java | 51 * A bitmap version of the application icon.
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
SimFullReceiver.java | 53 notification.icon = R.drawable.stat_sys_no_sim;
|
SmsRejectedReceiver.java | 67 notification.icon = R.drawable.stat_sys_no_sim;
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationListItemData.java | 43 // the presence icon resource id displayed for the conversation thread.
|
MmsThumbnailPresenter.java | 82 // Show an icon instead of real content in the thumbnail.
|
/packages/apps/PackageInstaller/res/layout/ |
uninstall_confirm.xml | 29 <!-- The snippet about the application - title, icon, description. -->
|
/packages/apps/Phone/res/layout/ |
ongoing_call_notification.xml | 28 <ImageView android:id="@+id/icon"
|
/packages/apps/QuickSearchBox/res/layout/ |
choice_activity.xml | 44 <ImageView android:id="@+id/icon"
|
/packages/apps/Settings/res/layout/ |
device_admin_item.xml | 34 <ImageView android:id="@+id/icon"
|
preference_icon.xml | 29 android:id="@+id/icon"
|
/packages/apps/Stk/res/values/ |
strings.xml | 18 <!-- Default Application label used on home screen with an icon -->
|
/packages/apps/VoiceDialer/ |
AndroidManifest.xml | 19 android:icon="@drawable/app_voicedialer">
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
InputModeSwitcher.java | 99 * keyboard and an English one are different in an icon which is used to 102 * launched from Chinese QWERTY soft keyboard, and it has Chinese icon on 251 * Current icon. 0 for none icon. 438 // Return the icon to update. 452 // Return the icon to update. 525 // Return the icon to update. 572 // Return the icon to update. 631 // Return the icon to update.
|
/packages/providers/ContactsProvider/ |
AndroidManifest.xml | 18 android:icon="@drawable/app_icon">
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
DocumentDescriptor.java | 40 * The XML name is never shown in the UI directly. It is however used when an icon
|
/frameworks/base/docs/html/guide/topics/manifest/ |
activity-element.jd | 17 android:<a href="#icon">icon</a>="<i>drawable resource</i>" 289 <dt><a name="icon"></a>{@code android:icon}</dt> 290 <dd>An icon representing the activity. The icon is displayed to users when 293 The icon is often accompanied by a label (see the {@code label} attribute). 298 the image definition. If it is not set, the icon specified for the application 301 element's <code><a href="{@docRoot}guide/topics/manifest/application-element.html#icon">icon</a></code> attribute) [all...] |
/frameworks/base/services/java/com/android/server/ |
NotificationManagerService.java | 181 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon) 182 + " / " + idDebugString(baseContext, this.pkg, notification.icon)); 672 if (notification.icon != 0) { 707 if (notification.icon != 0) { 708 IconData icon = IconData.makeIcon(null, pkg, notification.icon, local 737 mStatusBarService.updateIcon(r.statusBarKey, icon, n); 745 r.statusBarKey = mStatusBarService.addIcon(icon, n); [all...] |
/cts/tests/tests/content/src/android/content/pm/cts/ |
PackageItemInfoTest.java | 154 assertEquals(expected.icon, actual.icon);
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebHistoryItemTest.java | 91 Bitmap icon = view.getFavicon(); local 92 assertEquals(icon, item.getFavicon());
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
LauncherShortcuts.java | 33 * is shown to the user as an icon. 102 * <li>{@link android.content.Intent#EXTRA_SHORTCUT_ICON} The shortcut's icon, if provided as a
|
NotifyingService.java | 98 // Set the icon, scrolling text and timestamp. 99 // Note that in this example, we pass null for tickerText. We update the icon enough that
|
/development/samples/NotePad/ |
AndroidManifest.xml | 25 <application android:icon="@drawable/app_notes" 104 android:icon="@drawable/live_folder_notes">
|
/external/webkit/WebCore/loader/icon/ |
IconFetcher.cpp | 125 // Check if any of the entries have the same type as the native icon type. 208 // We finished loading, create the icon
|
/frameworks/base/awt/org/apache/harmony/awt/wtk/ |
NativeWindow.java | 178 * Set the image to be displayed in the minimized icon for 180 * @param image the icon image to be displayed
|
/frameworks/base/core/java/com/android/internal/app/ |
AlertController.java | 292 * Set resId to 0 if you don't want an icon. 293 * @param resId the resourceId of the drawable to use as the icon or 0 294 * if you don't want an icon. 307 public void setIcon(Drawable icon) { 308 mIcon = icon; 310 mIconView.setImageDrawable(icon); 404 mIconView = (ImageView) mWindow.findViewById(R.id.icon); 423 /* Apply the padding from the icon to ensure the [all...] |