OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:seconddrawable
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/widget/src/android/widget/cts/
CheckedTextViewTest.java
212
Drawable
secondDrawable
= mResources.getDrawable(R.drawable.pass);
213
secondDrawable
.setVisible(true, false);
214
assertEquals(StateSet.WILD_CARD,
secondDrawable
.getState());
217
checkedTextView.setCheckMarkDrawable(
secondDrawable
);
218
assertEquals(
secondDrawable
.getIntrinsicWidth() + basePaddingRight,
220
assertTrue(
secondDrawable
.isVisible());
221
assertTrue(Arrays.equals(checkedTextView.getDrawableState(),
secondDrawable
.getState()));
253
Drawable
secondDrawable
= mResources.getDrawable(R.drawable.pass);
254
checkedTextView.setCheckMarkDrawable(
secondDrawable
);
255
assertEquals(
secondDrawable
.getIntrinsicWidth() + basePaddingRight
[
all
...]
CompoundButtonTest.java
204
Drawable
secondDrawable
= mResources.getDrawable(R.drawable.pass);
205
secondDrawable
.setVisible(true, false);
206
assertEquals(StateSet.WILD_CARD,
secondDrawable
.getState());
208
compoundButton.setButtonDrawable(
secondDrawable
);
209
assertTrue(
secondDrawable
.isVisible());
Completed in 615 milliseconds