HomeSort by relevance Sort by last modified time
    Searched refs:Drawable (Results 1 - 25 of 1620) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
TextViewCompatUtils.java 19 import android.graphics.drawable.Drawable;
25 // Note that TextView.setCompoundDrawablesRelativeWithIntrinsicBounds(Drawable,Drawable,
26 // Drawable,Drawable) has been introduced in API level 17 (Build.VERSION_CODE.JELLY_BEAN_MR1).
29 Drawable.class, Drawable.class, Drawable.class, Drawable.class)
    [all...]
  /developers/build/prebuilts/gradle/AppUsageStatistics/Application/src/main/java/com/example/android/appusagestatistics/
CustomUsageStats.java 20 import android.graphics.drawable.Drawable;
27 public Drawable appIcon;
  /developers/samples/android/system/AppUsageStatistics/Application/src/main/java/com/example/android/appusagestatistics/
CustomUsageStats.java 20 import android.graphics.drawable.Drawable;
27 public Drawable appIcon;
  /development/samples/browseable/AppUsageStatistics/src/com.example.android.appusagestatistics/
CustomUsageStats.java 20 import android.graphics.drawable.Drawable;
27 public Drawable appIcon;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
UidDetail.java 19 import android.graphics.drawable.Drawable;
26 public Drawable icon;
  /frameworks/support/design/base/android/support/design/widget/
ShadowViewDelegate.java 19 import android.graphics.drawable.Drawable;
24 void setBackgroundDrawable(Drawable background);
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
GlideAnimation.java 3 import android.graphics.drawable.Drawable;
21 * {@link android.graphics.drawable.Drawable}s).
30 * Returns the current drawable being displayed in the view, or null if no such drawable exists (or one cannot
33 Drawable getCurrentDrawable();
36 * Sets the current drawable (usually an animated drawable) to display in the wrapped view.
38 * @param drawable The drawable to display in the wrapped view
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
DrawableImageViewTarget.java 3 import android.graphics.drawable.Drawable;
7 * A target for display {@link Drawable} objects in {@link ImageView}s.
9 public class DrawableImageViewTarget extends ImageViewTarget<Drawable> {
15 protected void setResource(Drawable resource) {
ImageViewTarget.java 3 import android.graphics.drawable.Drawable;
21 * Returns the current {@link android.graphics.drawable.Drawable} being displayed in the view using
25 public Drawable getCurrentDrawable() {
30 * Sets the given {@link android.graphics.drawable.Drawable} on the view using
31 * {@link android.widget.ImageView#setImageDrawable(android.graphics.drawable.Drawable)}.
33 * @param drawable {@inheritDoc
    [all...]
BaseTarget.java 3 import android.graphics.drawable.Drawable;
49 public void onLoadCleared(Drawable placeholder) {
57 public void onLoadStarted(Drawable placeholder) {
65 public void onLoadFailed(Exception e, Drawable errorDrawable) {
Target.java 3 import android.graphics.drawable.Drawable;
44 * @param placeholder The placeholder drawable to optionally show, or null.
46 void onLoadStarted(Drawable placeholder);
52 * Note - This may be called before {@link #onLoadStarted(android.graphics.drawable.Drawable)} if the model
58 * @param errorDrawable The error drawable to optionally show, or null.
60 void onLoadFailed(Exception e, Drawable errorDrawable);
72 * @param placeholder The placeholder drawable to optionally show, or null.
74 void onLoadCleared(Drawable placeholder)
    [all...]
  /frameworks/support/compat/ics/android/support/v4/graphics/drawable/
DrawableWrapper.java 17 package android.support.v4.graphics.drawable;
21 import android.graphics.drawable.Drawable;
25 * Interface which allows a {@link android.graphics.drawable.Drawable} to get/set wrapped
32 Drawable getWrappedDrawable();
33 void setWrappedDrawable(Drawable drawable);
  /frameworks/support/transition/base/android/support/transition/
ViewOverlayImpl.java 19 import android.graphics.drawable.Drawable;
27 * Adds a Drawable to the overlay. The bounds of the drawable should be relative to
28 * the host view. Any drawable added to the overlay should be removed when it is no longer
31 * @param drawable The Drawable to be added to the overlay. This drawable will be
33 * @see #remove(Drawable)
35 void add(@NonNull Drawable drawable)
    [all...]
  /frameworks/support/v17/leanback/api23/android/support/v17/leanback/widget/
ForegroundHelperApi23.java 16 import android.graphics.drawable.Drawable;
23 public static Drawable getForeground(View view) {
27 public static void setForeground(View view, Drawable drawable) {
28 view.setForeground(drawable);
  /frameworks/support/v7/cardview/src/android/support/v7/widget/
CardViewDelegate.java 18 import android.graphics.drawable.Drawable;
27 void setCardBackground(Drawable drawable);
28 Drawable getCardBackground();
  /frameworks/base/core/java/android/content/res/
DrawableCache.java 19 import android.graphics.drawable.Drawable;
22 * Class which can be used to cache Drawable resources against a theme.
24 class DrawableCache extends ThemedResourceCache<Drawable.ConstantState> {
28 * @param key a key that uniquely identifies the drawable resource
34 public Drawable getInstance(long key, Resources resources, Resources.Theme theme) {
35 final Drawable.ConstantState entry = get(key, theme);
44 public boolean shouldInvalidateEntry(Drawable.ConstantState entry, int configChanges) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
MultiActionsProvider.java 16 import android.graphics.drawable.Drawable;
41 private Drawable[] mDrawables;
53 public void setDrawables(Drawable[] drawables) {
66 public Drawable[] getDrawables() {
95 * @return The icon drawable for the current state of this MultiAction.
97 public Drawable getCurrentDrawable() {
ForegroundHelper.java 3 import android.graphics.drawable.Drawable;
17 public void setForeground(View view, Drawable drawable);
19 public Drawable getForeground(View view);
30 public void setForeground(View view, Drawable drawable) {
31 ForegroundHelperApi23.setForeground(view, drawable);
35 public Drawable getForeground(View view) {
48 public void setForeground(View view, Drawable drawable)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CachingIconLoader.java 25 import android.graphics.drawable.Drawable;
55 public NowOrLater<Drawable> getIcon(String drawableId) {
58 return new Now<Drawable>(null);
61 NowOrLater<Drawable.ConstantState> drawableState;
70 return new NowOrLaterWrapper<Drawable.ConstantState, Drawable>(drawableState){
72 public Drawable get(Drawable.ConstantState value) {
76 NowOrLater<Drawable> drawable = mWrapped.getIcon(drawableId) external variable declarations
77 newEntry.set(drawable); external variable declarations
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonDrawable.java 20 import android.graphics.drawable.Drawable;
21 import android.graphics.drawable.LayerDrawable;
25 * Drawable for {@link KeyButtonView}s which contains an asset for both normal mode and light
32 public static KeyButtonDrawable create(Drawable lightDrawable,
33 @Nullable Drawable darkDrawable) {
36 new Drawable[] { lightDrawable.mutate(), darkDrawable.mutate() });
38 return new KeyButtonDrawable(new Drawable[] { lightDrawable.mutate() });
42 private KeyButtonDrawable(Drawable[] drawables) {
  /packages/apps/Messaging/src/com/android/messaging/ui/
ConversationDrawables.java 20 import android.graphics.drawable.Drawable;
27 * A singleton cache that holds tinted drawable resources for displaying messages, such as
35 private Drawable mIncomingBubbleDrawable;
36 private Drawable mOutgoingBubbleDrawable;
37 private Drawable mIncomingErrorBubbleDrawable;
38 private Drawable mIncomingBubbleNoArrowDrawable;
39 private Drawable mOutgoingBubbleNoArrowDrawable;
40 private Drawable mAudioPlayButtonDrawable;
41 private Drawable mAudioPauseButtonDrawable
    [all...]
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
DrawableCompat.java 17 package android.support.v4.graphics.drawable;
23 import android.graphics.drawable.Drawable;
24 import android.graphics.drawable.DrawableContainer;
25 import android.graphics.drawable.InsetDrawable;
42 * Helper for accessing features in {@link android.graphics.drawable.Drawable}
50 public void jumpToCurrentState(Drawable drawable) {
51 drawable.jumpToCurrentState()
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/shims/
LoaderCompatShim.java 19 import android.graphics.drawable.Drawable;
26 Drawable drawableForItem(T item, Drawable recycle);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
Parallaxable.java 17 package com.android.bitmap.drawable;
19 import android.graphics.drawable.Drawable;
22 * {@link Drawable}s that support a parallax effect when drawing should
  /packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/
LensPickerItem.java 19 import android.graphics.drawable.Drawable;
26 private final Drawable mIcon;
31 public LensPickerItem(String label, Drawable icon, Intent launchIntent, String facetId) {
39 * Gets a {@link Drawable} icon to represent this {@link LensPickerItem}.
41 public Drawable getIcon() {

Completed in 1216 milliseconds

1 2 3 4 5 6 7 8 91011>>