Home
last modified time | relevance | path

Searched refs:typedValue (Results 1 – 2 of 2) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
DCustomViewAccessibilityActivity.java216 TypedValue typedValue = new TypedValue(); in BaseToggleButton() local
217 context.getTheme().resolveAttribute(android.R.attr.textSize, typedValue, true); in BaseToggleButton()
218 final int textSize = (int) typedValue.getDimension( in BaseToggleButton()
222 context.getTheme().resolveAttribute(android.R.attr.textColorPrimary, typedValue, true); in BaseToggleButton()
223 final int textColor = context.getResources().getColor(typedValue.resourceId); in BaseToggleButton()
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactsListFragment.java540 final TypedValue typedValue = new TypedValue(); in getListPreferredItemHeight() local
544 android.R.attr.listPreferredItemHeight, typedValue, true); in getListPreferredItemHeight()
553 return (int) typedValue.getDimension(metrics); in getListPreferredItemHeight()