Home | History | Annotate | Download | only in pm

Lines Matching defs:banner

136      * component's banner.  From the "banner" attribute or, if not set, 0.
138 public int banner;
173 banner = orig.banner;
510 * Retrieve the current graphical banner associated with this item. This
511 * will call back on the given PackageManager to load the banner from
514 * @param pm A PackageManager from which the banner can be loaded; usually
517 * @return Returns a Drawable containing the item's banner. If the item
518 * does not have a banner, this method will return null.
521 if (banner != 0) {
522 Drawable dr = pm.getDrawable(packageName, banner, getApplicationInfo());
546 * Retrieve the default graphical banner associated with this item.
548 * @param pm A PackageManager from which the banner can be loaded; usually
551 * @return Returns a Drawable containing the item's default banner
639 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0 || banner != 0) {
643 + " banner=0x" + Integer.toHexString(banner));
659 dest.writeInt(banner);
672 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0 || banner != 0) {
676 proto.write(PackageItemInfoProto.BANNER, banner);
690 banner = source.readInt();