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

  /frameworks/opt/setupwizard/library/gingerbread/src/com/android/setupwizardlib/view/
NavigationBarButton.java 103 Drawable[] compoundDrawables = getCompoundDrawables();
104 drawables[0] = compoundDrawables[0]; // left
105 drawables[1] = compoundDrawables[1]; // top
106 drawables[2] = compoundDrawables[2]; // right
107 drawables[3] = compoundDrawables[3]; // bottom
  /cts/tests/tests/widget/src/android/widget/cts/util/
TestUtils.java 431 final Drawable[] compoundDrawables = textView.getCompoundDrawables();
433 assertNull(compoundDrawables[0]);
436 ((BitmapDrawable) compoundDrawables[0]).getBitmap());
439 assertNull(compoundDrawables[1]);
442 ((BitmapDrawable) compoundDrawables[1]).getBitmap());
445 assertNull(compoundDrawables[2]);
448 ((BitmapDrawable) compoundDrawables[2]).getBitmap());
451 assertNull(compoundDrawables[3]);
454 ((BitmapDrawable) compoundDrawables[3]).getBitmap());
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
AppCompatTextHelper.java 340 final Drawable[] compoundDrawables = mView.getCompoundDrawables();
341 applyCompoundDrawableTint(compoundDrawables[0], mDrawableLeftTint);
342 applyCompoundDrawableTint(compoundDrawables[1], mDrawableTopTint);
343 applyCompoundDrawableTint(compoundDrawables[2], mDrawableRightTint);
344 applyCompoundDrawableTint(compoundDrawables[3], mDrawableBottomTint);
348 final Drawable[] compoundDrawables = mView.getCompoundDrawablesRelative();
349 applyCompoundDrawableTint(compoundDrawables[0], mDrawableStartTint);
350 applyCompoundDrawableTint(compoundDrawables[2], mDrawableEndTint);

Completed in 338 milliseconds