HomeSort by relevance Sort by last modified time
    Searched refs:FastBitmapDrawable (Results 1 - 22 of 22) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/
BubbleTextView.java 152 FastBitmapDrawable iconDrawable = mLauncher.createIconDrawable(b);
154 iconDrawable.setState(FastBitmapDrawable.State.DISABLED);
169 FastBitmapDrawable iconDrawable = mLauncher.createIconDrawable(info.iconBitmap);
171 iconDrawable.setState(FastBitmapDrawable.State.DISABLED);
255 if (mIcon instanceof FastBitmapDrawable) {
256 FastBitmapDrawable d = (FastBitmapDrawable) mIcon;
259 d.animateState(FastBitmapDrawable.State.DISABLED);
261 d.animateState(FastBitmapDrawable.State.PRESSED);
263 d.animateState(FastBitmapDrawable.State.NORMAL)
    [all...]
ClickShadowView.java 82 .setDuration(FastBitmapDrawable.CLICK_FEEDBACK_DURATION)
83 .setInterpolator(FastBitmapDrawable.CLICK_FEEDBACK_INTERPOLATOR)
PreloadIconDrawable.java 181 if (mIcon instanceof FastBitmapDrawable) {
182 ((FastBitmapDrawable) mIcon).setState(level <= 0 ?
183 FastBitmapDrawable.State.DISABLED : FastBitmapDrawable.State.NORMAL);
235 if (!(mIcon instanceof FastBitmapDrawable)) {
240 ((FastBitmapDrawable) mIcon).getBitmap(), 20);
PendingAppWidgetHostView.java 135 FastBitmapDrawable disabledIcon = mLauncher.createIconDrawable(mIcon);
136 disabledIcon.setState(FastBitmapDrawable.State.DISABLED);
140 mCenterDrawable = new FastBitmapDrawable(mIcon);
150 FastBitmapDrawable drawable = mLauncher.createIconDrawable(mIcon);
FastBitmapDrawable.java 36 public class FastBitmapDrawable extends Drawable {
39 * The possible states that a FastBitmapDrawable can be in.
52 * Used specifically by the view drawing this FastBitmapDrawable.
110 public FastBitmapDrawable(Bitmap b) {
BaseRecyclerViewFastScrollBar.java 41 void setFastScrollFocusState(final FastBitmapDrawable.State focusState, boolean animated);
FolderIcon.java 586 if (d instanceof FastBitmapDrawable) {
587 FastBitmapDrawable fd = (FastBitmapDrawable) d;
Launcher.java     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicViewHelper.java 48 FastBitmapDrawable originalD = new FastBitmapDrawable(original);
49 FastBitmapDrawable outlineD = new FastBitmapDrawable(outline);
FastBitmapDrawable.java 27 class FastBitmapDrawable extends Drawable {
34 FastBitmapDrawable(Bitmap b) {
PagedViewIcon.java 59 setCompoundDrawablesWithIntrinsicBounds(null, new FastBitmapDrawable(mIcon), null, null);
PagedViewWidget.java 97 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable();
148 void applyPreview(FastBitmapDrawable preview, int index) {
BubbleTextView.java 94 new FastBitmapDrawable(b),
AppsCustomizePagedView.java 722 FastBitmapDrawable previewDrawable = (FastBitmapDrawable) image.getDrawable();
    [all...]
Folder.java 525 new FastBitmapDrawable(item.getIcon(mIconCache)), null, null);
    [all...]
LauncherModel.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsFastScrollHelper.java 23 import com.android.launcher3.FastBitmapDrawable;
219 FastBitmapDrawable.State newState = FastBitmapDrawable.State.NORMAL;
225 FastBitmapDrawable.State.FAST_SCROLL_HIGHLIGHTED :
226 FastBitmapDrawable.State.FAST_SCROLL_UNHIGHLIGHTED;
  /frameworks/base/core/java/android/app/
WallpaperManager.java 191 static class FastBitmapDrawable extends Drawable {
199 private FastBitmapDrawable(Bitmap bitmap) {
675 return new FastBitmapDrawable(bm);
690 return new FastBitmapDrawable(bm);
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 839 private static class FastBitmapDrawable extends Drawable {
841 public FastBitmapDrawable(Bitmap b) {
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 1581 milliseconds