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

12

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java46 public void setLogo(@Nullable Drawable logo); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DSplashScreenStartingData.java41 int logo, int windowFlags, Configuration mergedOverrideConfiguration) {
49 mLogo = logo;
39 SplashScreenStartingData(WindowManagerService service, String pkg, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, Configuration mergedOverrideConfiguration) argument
H A DAppWindowContainerController.java444 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags,
541 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags,
443 addStartingWindow(String pkg, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, IBinder transferFrom, boolean newTask, boolean taskSwitch, boolean processRunning, boolean allowTaskSnapshot, boolean activityCreated, boolean fromRecents) 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/support/tv-provider/src/androidTest/java/androidx/tvprovider/media/tv/
H A DChannelLogoUtilsTest.java73 Bitmap logo = BitmapFactory.decodeResource(getContext().getResources(),
75 assertNotNull(logo);
76 assertTrue(ChannelLogoUtils.storeChannelLogo(getContext(), mChannelId, logo));
78 // wait 10 secs to make sure that the logo file is written into the disk.
96 // wait 10 secs to make sure that the logo file is written into the disk.
H A DPreviewChannelTest.java160 Bitmap logo = BitmapFactory.decodeResource(mContext.getResources(),
162 assertNotNull(logo);
163 return logo;
H A DPreviewChannelHelperTest.java82 .setLogoUri(Uri.parse("http://example.com/program-logo.mpg"))
178 .setLogoUri(Uri.parse("http://example.com/program-logo.mpg"))
329 * However, due to a known issue, when logo is persisted, the file status is not consistent
331 * to make sure that the logo file is written into the disk.
596 Bitmap logo = BitmapFactory.decodeResource(mContext.getResources(),
598 assertNotNull(logo);
610 .setLogo(logo);
/frameworks/base/core/java/android/content/pm/
H A DComponentInfo.java143 * Return the logo resource identifier to use for this component. If
144 * the component defines a logo, that is used; else, the application
145 * logo is used.
147 * @return The logo associated with this component.
150 return logo != 0 ? logo : applicationInfo.logo;
H A DPackageItemInfo.java142 * component's logo. Logos may be larger/wider than icons and are
144 * combination. From the "logo" attribute or, if not set, 0.
146 public int logo; field in class:PackageItemInfo
174 logo = orig.logo;
552 * or null if no default logo is available.
561 * Retrieve the current graphical logo associated with this item. This
562 * will call back on the given PackageManager to load the logo from
565 * @param pm A PackageManager from which the logo can be loaded; usually
568 * @return Returns a Drawable containing the item's logo
[all...]
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
H A DChannelLogoUtils.java48 * Stores channel logo in the system content provider from the given URI. The method will try
67 * @param channelId the ID of the target channel with which the fetched logo should be
69 * @param logoUri the {@link Uri} of the logo file to be fetched and stored in the system
72 * @return {@code true} if successfully fetched the image file referred by the give logo URI
96 Log.i(TAG, "Failed to get logo from the URI: " + logoUri + "\n", e);
113 * Stores the given channel logo {@link Bitmap} in the system content provider and associate
117 * @param channelId the ID of the target channel with which the given logo should be associated
118 * @param logo the logo image to be stored
120 * @return {@code true} if successfully stored the logo i
125 storeChannelLogo(@onNull Context context, long channelId, @NonNull Bitmap logo) argument
[all...]
H A DPreviewChannelHelper.java118 * {@link PreviewChannel.Builder#setLogo(Uri) url as your logo}. In such case,
119 * {@link #updatePreviewChannel(long, PreviewChannel)} will load the logo over the network. To
135 // Rollback channel insertion if logo could not be added.
138 throw new IOException("Failed to add logo, so channel (ID="
161 * {@link PreviewChannel.Builder#setLogo(Uri) url as your logo}. In such case,
162 * {@link #updatePreviewChannel(long, PreviewChannel)} will load the logo over the network. To
223 * {@link PreviewChannel.Builder#setLogo(Uri) url as your logo}. In such case,
224 * {@link #updatePreviewChannel(long, PreviewChannel)} will load the logo over the network. To
238 throw new IOException("Fail to update channel (ID=" + channelId + ") logo.");
259 * Internally, a logo i
[all...]
/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/main/java/androidx/appcompat/widget/
H A DToolbarWidgetWrapper.java121 final Drawable logo = a.getDrawable(R.styleable.ActionBar_logo);
122 if (logo != null) {
123 setLogo(logo);
322 Drawable logo = null;
325 logo = mLogo != null ? mLogo : mIcon;
327 logo = mIcon;
330 mToolbar.setLogo(logo);
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java56 Drawable drawable = getResources().getDrawable(R.drawable.logo);
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java116 public void setLogo(Drawable logo) { argument
117 mDecorToolbar.setLogo(logo);
H A DWindowDecorActionBar.java1370 public void setLogo(Drawable logo) { argument
1371 mDecorToolbar.setLogo(logo);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DToolbarActionBar.java115 public void setLogo(Drawable logo) { argument
116 mDecorToolbar.setLogo(logo);
H A DActionBar.java72 * heavily in the action bar and other application chrome or use a {@link #setLogo(int) logo}
101 * 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.
263 * Whether the home section shows an icon or logo is controlled
278 * Whether the home section shows an icon or logo is controlled
289 * Set the logo to display in the 'home' section of the action bar.
290 * The action bar will use a logo specified by its style or the
291 * activity logo b
316 setLogo(Drawable logo) argument
[all...]
H A DWindowDecorActionBar.java1385 public void setLogo(Drawable logo) { argument
1386 mDecorToolbar.setLogo(logo);
/frameworks/base/services/core/java/com/android/server/pm/permission/
H A DBasePermission.java527 if (pi1.logo != pi2.logo) return false;
/frameworks/base/core/java/android/app/
H A DActionBar.java75 * in the action bar and other application chrome or use a {@link #setLogo(int) logo}
106 * Standard navigation mode. Consists of either a logo or icon
157 * Use logo instead of icon if available. This flag will cause appropriate
158 * navigation modes to use a wider logo in place of the standard icon.
167 * navigation elements. This includes logo and icon.
273 * Whether the home section shows an icon or logo is controlled
288 * Whether the home section shows an icon or logo is controlled
299 * Set the logo to display in the 'home' section of the action bar.
300 * The action bar will use a logo specified by its style or the
301 * activity logo b
326 setLogo(Drawable logo) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestWindowManagerPolicy.java156 int logo, int windowFlags, Configuration overrideConfig, int displayId) {
154 addSplashScreen(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, Configuration overrideConfig, int displayId) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageParserTest.java315 assertEquals(aIntent.logo, bIntent.logo);

Completed in 2631 milliseconds

12