/frameworks/base/core/java/android/content/pm/ |
D | PackageItemInfo.java | 75 public int logo; field in PackageItemInfo 95 logo = orig.logo; in PackageItemInfo() 175 if (logo != 0) { in loadLogo() 176 Drawable d = pm.getDrawable(packageName, logo, getApplicationInfo()); in loadLogo() 244 dest.writeInt(logo); in writeToParcel() 255 logo = source.readInt(); in PackageItemInfo()
|
D | PackageParser.java | 1750 ai.logo = sa.getResourceId( in parseApplication() 2024 outInfo.logo = logoVal; in parsePackageItemInfo() 2350 info.logo = target.info.logo; in parseActivityAlias() 3051 outInfo.logo = sa.getResourceId( in parseIntent() 3368 outInfo.logo = logoVal; in Component() 3773 public int logo; field in PackageParser.IntentInfo
|
/frameworks/base/docs/html/distribute/googleplay/promote/ |
D | brand.jd | 30 <p>If used with your logo, "for Android" needs to be smaller in size than your logo. 68 <p>You may not file trademark applications incorporating the Android robot logo or 73 <h4 style="clear:right">Android logo</h4> 79 <p>The Android logo may not be used. Nor can this be used with the Android robot.</p> 148 <li>When used alongside logos for other application marketplaces, the Google Play logo
|
D | badge-files.jd | 265 <li>When used alongside logos for other application marketplaces, the Google Play logo
|
/frameworks/base/docs/html/ |
D | legal.jd | 23 <p>The "Android" name, the <img src="images/android-logo.png" alt="Android" 24 style="margin:0;padding:0 2px;vertical-align:baseline" /> logo, and 26 You may not use the logo or the logo's custom typeface.</p> 34 <p>The Android Robot logo <img src="images/robot-tiny.png" alt="" 37 #A4C639. The Android Robot logo is licensed under the terms of the <a
|
D | license.jd | 66 <img src="images/android-logo.png" alt="Android" 67 style="margin:0;padding:0 2px;vertical-align:baseline" /> stylized typeface logo) are not included
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | application-element.jd | 19 android:<a href="#logo">logo</a>="<i>drawable resource</i>" 203 <dt><a name="logo"></a>{@code android:logo}</dt> 204 <dd>A logo for the application as whole, and the default logo for activities. 206 the image (for example {@code "@drawable/logo"}). There is no default logo.</p></dd>
|
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/ |
D | TransformTestActivity.java | 56 Drawable drawable = getResources().getDrawable(R.drawable.logo); in onCreate()
|
/frameworks/base/core/java/android/app/ |
D | ActionBar.java | 251 public abstract void setLogo(Drawable logo); in setLogo() argument
|
/frameworks/base/docs/html/google/gcm/ |
D | index.jd | 9 <img src="{@docRoot}images/gcm/gcm-logo.png" />
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarView.java | 691 public void setLogo(Drawable logo) { in setLogo() argument 692 mLogo = logo; in setLogo() 693 if (logo != null && (mDisplayOptions & ActionBar.DISPLAY_USE_LOGO) != 0) { in setLogo() 694 mHomeLayout.setIcon(logo); in setLogo()
|
/frameworks/base/docs/html/about/versions/ |
D | android-3.0.jd | 108 It includes the application logo in the left corner and provides a new interface for items in the 127 <li>Add an action to the application logo and replace it with a custom logo 128 <p>The application logo is automatically assigned the {@code android.R.id.home} ID, 132 <p>To replace the icon with a logo, specify your application logo in the manifest file with the 133 <a href="{@docRoot}guide/topics/manifest/application-element.html#logo">{@code android:logo}</a>
|
D | android-4.0.jd | 1267 whether the icon/logo behaves as a button to navigate home or “up" (pass “true" to make it behave as 1271 setLogo()} allow you to define the action bar icon or logo at runtime.</li> 1720 the activity window. It includes the application logo in the left corner and provides a new
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ActionBarImpl.java | 1193 public void setLogo(Drawable logo) { in setLogo() argument 1194 mActionView.setLogo(logo); in setLogo()
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | actionbar.jd | 92 <p>This is accomplished with the app icon or logo on the left side and the activity title. 119 landscape handset), showing the logo on the left, navigation tabs, and an action item on the 428 <h2>Using a logo instead of icon</h2> 435 href="{@docRoot}guide/topics/manifest/application-element.html#logo">{@code android:logo}</a> 436 attribute, then the action bar uses the logo image instead of the icon.</p> 437 <p>A logo should usually be wider than the icon, but should not include unnecessary text. You 438 should generally use a logo only when it represents your brand in a traditional format that users 439 recognize. A good example is the YouTube app's logo—the logo represents the expected user 520 <img src="{@docRoot}images/ui/actionbar-logo.png" alt="" />
|
/frameworks/base/docs/html/training/multiscreen/ |
D | screensizes.jd | 282 <li><b>small screen, portrait:</b> single pane, with logo</li> 283 <li><b>small screen, landscape:</b> single pane, with logo</li>
|
/frameworks/base/docs/html/guide/practices/ |
D | tablets-and-handsets.jd | 96 title bar at the top of the screen. By default, the action bar includes the application logo on the 461 the logo on a web site) or as a way to navigate up the application's structural hierarchy. Although
|
D | optimizing-for-3.0.jd | 329 the screen. By default, the Action Bar includes the application logo on the left side, followed by
|
/frameworks/base/docs/html/guide/components/ |
D | fundamentals.jd | 484 logo.png} (saved in the {@code res/drawable/} directory), the SDK tools generate a resource ID 485 named {@code R.drawable.logo}, which you can use to reference the image and insert it in your
|
/frameworks/base/docs/html/design/patterns/ |
D | actionbar.jd | 27 The app icon establishes your app's identity. It can be replaced with a different logo or branding
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | more-resources.jd | 104 android:src="@drawable/logo"
|
D | drawable-resource.jd | 1405 android:drawable="@drawable/logo"
|
/frameworks/base/docs/html/distribute/googleplay/publish/ |
D | preparing.jd | 412 should reference the same logo and icon as users will actually find in the All
|
/frameworks/base/services/java/com/android/server/pm/ |
D | PackageManagerService.java | 2144 if (pi1.logo != pi2.logo) return false; in comparePermissionInfos()
|
/frameworks/base/api/ |
D | 14.txt | 647 field public static final int logo = 16843454; // 0x10102be 6132 field public int logo;
|