Searched refs:logo (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/wm/
H A DStartingData.java28 final int logo; field in class:StartingData
40 logo = _logo;
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java46 public void setLogo(@Nullable Drawable logo); argument
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DActionBarWrapper.java72 public void setLogo(Drawable logo) { argument
73 mActionBar.setLogo(logo);
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DActionBarWrapper.java73 public void setLogo(Drawable logo) { argument
74 mActionBar.setLogo(logo);
/frameworks/base/core/java/android/content/pm/
H A DPackageItemInfo.java86 * component's logo. Logos may be larger/wider than icons and are
88 * combination. From the "logo" attribute or, if not set, 0.
90 public int logo; field in class:PackageItemInfo
118 logo = orig.logo;
282 * or null if no default logo is available.
291 * Retrieve the current graphical logo associated with this item. This
292 * will call back on the given PackageManager to load the logo from
295 * @param pm A PackageManager from which the logo can be loaded; usually
298 * @return Returns a Drawable containing the item's logo
[all...]
H A DComponentInfo.java135 * Return the logo resource identifier to use for this component. If
136 * the component defines a logo, that is used; else, the application
137 * logo is used.
139 * @return The logo associated with this component.
142 return logo != 0 ? logo : applicationInfo.logo;
/frameworks/base/core/java/com/android/internal/widget/
H A DToolbarWidgetWrapper.java116 final Drawable logo = a.getDrawable(R.styleable.ActionBar_logo);
117 if (logo != null) {
118 setLogo(logo);
343 Drawable logo = null;
346 logo = mLogo != null ? mLogo : mIcon;
348 logo = mIcon;
351 mToolbar.setLogo(logo);
H A DActionBarView.java566 * <p>As this encompasses the icon/logo, title and subtitle all in one, we need
686 public void setLogo(Drawable logo) { argument
687 mLogo = logo;
688 if (logo != null && (mDisplayOptions & ActionBar.DISPLAY_USE_LOGO) != 0) {
689 mHomeLayout.setIcon(logo);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbarWidgetWrapper.java116 final Drawable logo = a.getDrawable(R.styleable.ActionBar_logo);
117 if (logo != null) {
118 setLogo(logo);
319 Drawable logo = null;
322 logo = mLogo != null ? mLogo : mIcon;
324 logo = mIcon;
327 mToolbar.setLogo(logo);
H A DToolbar.java87 * <li><em>A branded logo image.</em> This may extend to the height of the bar and can be
92 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
324 final Drawable logo = a.getDrawable(R.styleable.Toolbar_logo);
325 if (logo != null) {
326 setLogo(logo);
491 * Set a logo drawable from a resource id.
493 * <p>This drawable should generally take the place of title text. The logo cannot be
494 * clicked. Apps using a logo should also supply a description using
607 * Set a logo drawable.
609 * <p>This drawable should generally take the place of title text. The logo canno
[all...]
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java56 Drawable drawable = getResources().getDrawable(R.drawable.logo);
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DSPVerifier.java258 throw new IOException("Failed to match icon against any cert logo");
262 Asn1Constructed logo = castObject(logoExtension, Asn1Constructed.class);
263 Asn1Constructed communityLogo = castObject(logo.getChildren().iterator().next(),
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl174 int icon, int logo, int windowFlags, IBinder transferFrom, boolean createIfNeeded);
H A DWindowManagerPolicy.java740 int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig);
738 addStartingWindow(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig) argument
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java119 public void setLogo(Drawable logo) { argument
120 mDecorToolbar.setLogo(logo);
H A DWindowDecorActionBar.java1379 public void setLogo(Drawable logo) { argument
1380 mDecorToolbar.setLogo(logo);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java69 * heavily in the action bar and other application chrome or use a {@link #setLogo(int) logo}
97 * Standard navigation mode. Consists of either a logo or icon
147 * Use logo instead of icon if available. This flag will cause appropriate
148 * navigation modes to use a wider logo in place of the standard icon.
157 * navigation elements. This includes logo and icon.
258 * Whether the home section shows an icon or logo is controlled
273 * Whether the home section shows an icon or logo is controlled
284 * Set the logo to display in the 'home' section of the action bar.
285 * The action bar will use a logo specified by its style or the
286 * activity logo b
311 setLogo(Drawable logo) argument
[all...]
H A DToolbarActionBar.java120 public void setLogo(Drawable logo) { argument
121 mDecorToolbar.setLogo(logo);
H A DWindowDecorActionBar.java1355 public void setLogo(Drawable logo) { argument
1356 mDecorToolbar.setLogo(logo);
/frameworks/base/core/java/android/app/
H A DActionBar.java76 * in the action bar and other application chrome or use a {@link #setLogo(int) logo}
103 * Standard navigation mode. Consists of either a logo or icon
152 * Use logo instead of icon if available. This flag will cause appropriate
153 * navigation modes to use a wider logo in place of the standard icon.
162 * navigation elements. This includes logo and icon.
268 * Whether the home section shows an icon or logo is controlled
283 * Whether the home section shows an icon or logo is controlled
294 * Set the logo to display in the 'home' section of the action bar.
295 * The action bar will use a logo specified by its style or the
296 * activity logo b
321 setLogo(Drawable logo) argument
[all...]
H A DDialog.java302 mWindow.setDefaultLogo(info.logo);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java815 * Returns a logo used on TV for the specified Activity.
820 // If we are mocking, then return a mock logo
825 Drawable logo = info.loadLogo(mPm);
826 return logo;
/frameworks/base/core/java/android/widget/
H A DToolbar.java78 * <li><em>A branded logo image.</em> This may extend to the height of the bar and can be
83 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
313 final Drawable logo = a.getDrawable(R.styleable.Toolbar_logo);
314 if (logo != null) {
315 setLogo(logo);
477 * Set a logo drawable from a resource id.
479 * <p>This drawable should generally take the place of title text. The logo cannot be
480 * clicked. Apps using a logo should also supply a description using
593 * Set a logo drawable.
595 * <p>This drawable should generally take the place of title text. The logo canno
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java137 int logo; // resource identifier of activity's logo. field in class:ActivityRecord
673 logo = aInfo.getLogoResource();
1390 logo, windowFlags, prev != null ? prev.appToken : null, createIfNeeded);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DOnboardingFragment.java88 * When onboarding screen appears, the logo splash animation is played by default. The animation
89 * fades in the logo image, pauses in a few seconds and fades it out.
91 * In most cases, the logo animation needs to be customized because the logo images of applications
94 * The logo animation can be customized in two ways:
96 * <li>The simplest way is to provide the logo image by calling {@link #setLogoResourceId} to show
97 * the default logo animation. This method should be called in {@link Fragment#onCreateView}.</li>
98 * <li>If the logo animation is complex, then override {@link #onCreateLogoAnimation} and return the
102 * If the inherited class provides neither the logo image nor the animation, the logo animatio
[all...]

Completed in 541 milliseconds

12