HomeSort by relevance Sort by last modified time
    Searched full:icon (Results 76 - 100 of 1136) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Phone/src/com/android/phone/
InCallMenuItemView.java 32 * indicator below the text, and an optional icon above the text.
34 * the indicator and icon.)
103 * Sets this item's icon, to be drawn above the text label.
105 public void setIcon(Drawable icon) {
106 if (DBG) log("setIcon(" + icon + ")...");
107 mIcon = icon;
110 // If there's an icon, we'll only have enough room for one line of text.
111 if (icon != null) setSingleLineMarquee();
115 * Sets this item's icon, to be drawn above the text label.
139 * absence of the icon or indicator
    [all...]
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 106 * match's icon. From the "icon" attribute or, if not set, 0.
108 public int icon; field in class:ResolveInfo
111 * Optional -- if non-null, the {@link #labelRes} and {@link #icon}
155 * Retrieve the current graphical icon associated with this resolution. This
156 * will call back on the given PackageManager to load the icon from
159 * @param pm A PackageManager from which the icon can be loaded; usually
162 * @return Returns a Drawable containing the resolution's icon. If the
163 * item does not have an icon, the default activity icon is returned
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuItemView.java 90 * Initializes with the provided title and icon
92 * @param icon The icon of this item
94 void initialize(CharSequence title, Drawable icon) {
103 setIcon(icon);
170 public void setIcon(Drawable icon) {
171 mIcon = icon;
173 if (icon != null) {
175 /* Set the bounds of the icon since setCompoundDrawables needs it. */
176 icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight())
    [all...]
  /frameworks/base/tests/LotsOfApps/
AndroidManifest.xml 10 <activity android:name="00" android:icon="@drawable/ic_launcher_add_folder">
17 <activity android:name="01" android:icon="@drawable/ic_launcher_alarmclock">
24 <activity android:name="02" android:icon="@drawable/ic_launcher_application">
31 <activity android:name="03" android:icon="@drawable/ic_launcher_browser">
38 <activity android:name="04" android:icon="@drawable/ic_launcher_camera">
45 <activity android:name="05" android:icon="@drawable/ic_launcher_camera_record">
52 <activity android:name="06" android:icon="@drawable/ic_launcher_contacts">
59 <activity android:name="07" android:icon="@drawable/ic_launcher_drm_file">
66 <activity android:name="08" android:icon="@drawable/ic_launcher_folder">
73 <activity android:name="09" android:icon="@drawable/ic_launcher_folder_bluetooth"
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
IconTitleDrawable.java 37 public IconTitleDrawable(String title, Drawable icon, Config config) {
40 mIcon = icon;
62 Drawable icon = mIcon; local
63 if (icon != null) {
64 icon.draw(canvas);
89 // Position the icon.
97 Drawable icon = mIcon; local
98 if (icon != null) {
100 icon.setBounds(iconLeft, iconY, iconLeft + iconSize, top + iconSize);
  /frameworks/base/docs/html/guide/practices/ui_guidelines/
index.jd 13 <dt><a href="{@docRoot}guide/practices/ui_guidelines/icon_design.html">Icon
15 href="{@docRoot}shareables/icon_templates-v2.0.zip">Android Icon Templates Pack
17 <dd>Your applications need a wide variety of icons, from a launcher icon to
18 icons in menus, dialogs, tabs, the status bar, and lists. The Icon Guidelines
19 describe each kind of icon in detail, with specifications for the size, color,
21 The Icon Templates Pack is an archive of Photoshop and Illustrator templates and
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 68 for (Image icon : mIconMap.values()) {
70 if (icon != null) {
71 icon.dispose();
78 * Returns an Image for a given icon name.
82 * @param osName The leaf name, without the extension, of an existing icon in the
83 * editor's "icons" directory. If it doesn't exists, a default icon will be
91 * Returns an Image for a given icon name.
95 * @param osName The leaf name, without the extension, of an existing icon in the
96 * editor's "icons" directory. If it doesn't exists, a default icon will be
100 * @param shape The shape of the icon in the automatically generated icons
105 Image icon = mIconMap.get(key); local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 31 * Functions for manipulating the icon database used by WebView.
55 // Message for dispatching icon request results
66 IconResult(String url, Bitmap icon, IconListener l) {
68 mIcon = icon;
173 Bitmap icon = nativeIconForPageUrl(url); local
174 if (icon != null) {
176 new IconResult(url, icon, listener)));
186 * Called when the icon has been retrieved from the database and the
189 * @param icon The favicon for the given url.
191 public void onReceivedIcon(String url, Bitmap icon);
    [all...]
  /development/apps/BuildWidget/
AndroidManifest.xml 8 <application android:icon="@drawable/icon" android:label="@string/app_name">
  /external/svox/picolanginstaller/
AndroidManifest.xml 8 <application android:icon="@drawable/icon" android:label="@string/app_name">
  /external/webkit/WebCore/manual-tests/
mail-attachments.html 7 <p><b>BUG ID:</b> <a href="rdar://problem/4435416">4435416</a> Attachments in Mail compose windows always display the broken image icon</p>
14 <p>Verify that the icon is what you see in Finder and has the file name and size beneath it</p>
  /packages/apps/Protips/
AndroidManifest.xml 9 android:icon="@drawable/icon">
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
AttributeDescriptor.java 31 * this particular attribute (e.g. text field, icon chooser, class selector, etc.)
83 * Returns an optional icon for the attribute.
85 * By default this tries to return an icon based on the XML name of the attribute.
89 * @return An icon for this element or null.
93 Image icon; local
94 icon = factory.getIcon(getXmlLocalName(), IconFactory.COLOR_RED, IconFactory.SHAPE_CIRCLE);
95 return icon != null ? icon : AdtPlugin.getAndroidLogo();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/testdata/
AndroidManifest-testapp.xml 3 <application android:icon="@drawable/icon">
  /external/libpng/contrib/visupng/
VisualPng.rc 95 // Icon
98 // Icon with lowest ID value placed first to ensure application icon
100 VISUALPNG ICON DISCARDABLE "VisualPng.ico"
  /external/quake/quake/src/QW/client/
winquake.rc 52 // Icon
55 // Icon with lowest ID value placed first to ensure application icon
57 IDI_ICON2 ICON DISCARDABLE "qwcl2.ico"
  /external/quake/quake/src/WinQuake/
winquake.rc 52 // Icon
55 // Icon with lowest ID value placed first to ensure application icon
57 IDI_ICON2 ICON DISCARDABLE "quake.ico"
  /packages/apps/Email/res/menu/
message_list_option_smart_folder.xml 23 android:icon="@*android:drawable/ic_menu_refresh"
28 android:icon="@*android:drawable/ic_menu_compose"
32 android:icon="@*android:drawable/ic_menu_account_list"
37 android:icon="@drawable/ic_menu_email_deselect_mail"
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 102 Drawable icon = appInfo.loadIcon(pm); local
103 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(icon);
121 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
141 Drawable icon; field in class:PackageUtil.AppSnippet
142 public AppSnippet(CharSequence label, Drawable icon) {
144 this.icon = icon;
174 Drawable icon = null; local
175 // Try to load the icon from the package's resources. If an app has not explicitly
176 // specified any resource, just use the default icon for now
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CachingIconLoader.java 27 * Icon loader that caches the results of another icon loader.
40 * Creates a new caching icon loader.
72 if (DBG) Log.d(TAG, "Found icon in cache: " + drawableId);
  /packages/apps/Settings/res/xml/
settings.xml 25 settings:icon="@drawable/ic_settings_wireless">
34 settings:icon="@drawable/ic_settings_call"
45 settings:icon="@drawable/ic_settings_sound"
56 settings:icon="@drawable/ic_settings_display"
67 settings:icon="@drawable/ic_settings_security"
79 settings:icon="@drawable/ic_settings_applications"
93 settings:icon="@drawable/ic_settings_sync"
102 settings:icon="@drawable/ic_settings_privacy"
114 settings:icon="@drawable/ic_settings_storage"
130 settings:icon="@drawable/ic_settings_search
    [all...]
  /cts/tests/res/menu/
title_icon.xml 21 android:icon="@drawable/start" />
25 android:icon="@drawable/pass" />
29 android:icon="@drawable/failed" />
  /development/samples/ApiDemos/res/menu/
submenu.xml 28 android:icon="@drawable/stat_happy" />
32 android:icon="@drawable/stat_neutral" />
36 android:icon="@drawable/stat_sad" />
title_icon.xml 21 android:icon="@drawable/stat_happy" />
25 android:icon="@drawable/stat_neutral" />
29 android:icon="@drawable/stat_sad" />
  /development/samples/SampleSyncAdapter/res/xml/
authenticator.xml 25 android:icon="@drawable/icon"
26 android:smallIcon="@drawable/icon"

Completed in 1029 milliseconds

1 2 34 5 6 7 8 91011>>