Searched refs:StateListDrawable (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTargetDrawable.java23 import android.graphics.drawable.StateListDrawable;
103 if (mDrawable instanceof StateListDrawable) {
104 StateListDrawable d = (StateListDrawable) mDrawable;
110 if (mDrawable instanceof StateListDrawable) {
111 StateListDrawable d = (StateListDrawable) mDrawable;
119 * Returns true if the drawable is a StateListDrawable and is in the focused state.
124 if (mDrawable instanceof StateListDrawable) {
125 StateListDrawable
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DStateListDrawable.java56 public class StateListDrawable extends DrawableContainer { class in inherits:DrawableContainer
58 private static final String TAG = "StateListDrawable";
74 public StateListDrawable() { method in class:StateListDrawable
118 com.android.internal.R.styleable.StateListDrawable);
277 StateListState(StateListState orig, StateListDrawable owner, Resources res) {
306 return new StateListDrawable(this, null);
311 return new StateListDrawable(this, res);
323 private StateListDrawable(StateListState state, Resources res) { method in class:StateListDrawable
H A DDrawable.java491 * {@link StateListDrawable} and {@link LevelListDrawable} this will be the child drawable
843 drawable = new StateListDrawable();
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
H A DStateListDrawableTest.java28 * Tests for StateListDrawable
34 private StateListDrawable slDrawable;
71 slDrawable = new StateListDrawable();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DIconUtilities.java22 import android.graphics.drawable.StateListDrawable;
98 StateListDrawable result = new StateListDrawable();
/frameworks/base/core/java/com/android/internal/widget/
H A DSizeAdaptiveLayout.java32 import android.graphics.drawable.StateListDrawable;
100 if (background instanceof StateListDrawable) {
101 StateListDrawable sld = (StateListDrawable) background;
/frameworks/base/core/java/android/widget/
H A DProgressBar.java35 import android.graphics.drawable.StateListDrawable;
336 } else if (drawable instanceof StateListDrawable) {
337 StateListDrawable in = (StateListDrawable) drawable;
338 StateListDrawable out = new StateListDrawable();
H A DPopupWindow.java27 import android.graphics.drawable.StateListDrawable;
193 // If this is a StateListDrawable, try to find and store the drawable to be
198 // StateListDrawable, thus adding superfluous padding to drop-down views.
200 // We assume a StateListDrawable will have a drawable for ABOVE_ANCHOR_STATE_SET and
202 if (mBackground instanceof StateListDrawable) {
203 StateListDrawable background = (StateListDrawable) mBackground;
209 // StateListDrawable which is not for the above-anchor state and use that.
907 // If the background drawable provided was a StateListDrawable with above-anchor

Completed in 290 milliseconds