Home | History | Annotate | Download | only in pm

Lines Matching refs:logo

78      * component's logo. Logos may be larger/wider than icons and are
80 * combination. From the "logo" attribute or, if not set, 0.
82 public int logo;
110 logo = orig.logo;
201 * or null if no default logo is available.
210 * Retrieve the current graphical logo associated with this item. This
211 * will call back on the given PackageManager to load the logo from
214 * @param pm A PackageManager from which the logo can be loaded; usually
217 * @return Returns a Drawable containing the item's logo. If the item
218 * does not have a logo, this method will return null.
221 if (logo != 0) {
222 Drawable d = pm.getDrawable(packageName, logo, getApplicationInfo());
231 * Retrieve the default graphical logo associated with this item.
233 * @param pm A PackageManager from which the logo can be loaded; usually
236 * @return Returns a Drawable containing the item's default logo
237 * or null if no default logo is available.
291 dest.writeInt(logo);
304 logo = source.readInt();