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

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsParallaxDrawable.java 85 * @param bottomDrawable Bottom drawable, when null it will create a default ColorDrawable.
94 Drawable coverDrawable, Drawable bottomDrawable,
97 init(context, parallax, coverDrawable, bottomDrawable, coverDrawableParallaxTarget);
116 Drawable coverDrawable, Drawable bottomDrawable,
118 if (bottomDrawable instanceof ColorDrawable) {
119 ColorDrawable colorDrawable = ((ColorDrawable) bottomDrawable);
125 addChildDrawable(mBottomDrawable = bottomDrawable);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DetailsFragmentBackgroundController.java 176 * @param bottomDrawable Drawable shown at bottom. {@link #setSolidColor(int)} will not work
177 * if bottomDrawable is not {@link ColorDrawable}; in that case it's app's
178 * responsibility to set content of bottomDrawable.
188 public void enableParallax(@NonNull Drawable coverDrawable, @NonNull Drawable bottomDrawable,
199 if (mSolidColor != Color.TRANSPARENT && bottomDrawable instanceof ColorDrawable) {
200 ((ColorDrawable) bottomDrawable).setColor(mSolidColor);
210 bottomDrawable,
464 Drawable bottomDrawable = getBottomDrawable();
465 if (bottomDrawable instanceof ColorDrawable) {
466 ((ColorDrawable) bottomDrawable).setColor(color)
    [all...]
DetailsSupportFragmentBackgroundController.java 173 * @param bottomDrawable Drawable shown at bottom. {@link #setSolidColor(int)} will not work
174 * if bottomDrawable is not {@link ColorDrawable}; in that case it's app's
175 * responsibility to set content of bottomDrawable.
185 public void enableParallax(@NonNull Drawable coverDrawable, @NonNull Drawable bottomDrawable,
196 if (mSolidColor != Color.TRANSPARENT && bottomDrawable instanceof ColorDrawable) {
197 ((ColorDrawable) bottomDrawable).setColor(mSolidColor);
207 bottomDrawable,
461 Drawable bottomDrawable = getBottomDrawable();
462 if (bottomDrawable instanceof ColorDrawable) {
463 ((ColorDrawable) bottomDrawable).setColor(color)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 263 compoundDrawablesImpl.bottomDrawable
537 public Drawable bottomDrawable;
543 bottomDrawable = bottom;
550 bottomDrawable = bottom != 0 ? ShadowDrawable.createFromResourceId(bottom) : null;
600 return shadowOf(bottomDrawable).getLoadedFromResourceId();
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
DetailsFragmentTest.java     [all...]
DetailsSupportFragmentTest.java     [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 567 milliseconds