Searched refs:styledAttributes (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/animation/ |
D | AnimatorInflater.java | 272 private static PropertyValuesHolder getPVH(TypedArray styledAttributes, int valueType, in getPVH() argument 275 TypedValue tvFrom = styledAttributes.peekValue(valueFromId); in getPVH() 278 TypedValue tvTo = styledAttributes.peekValue(valueToId); in getPVH() 296 String fromString = styledAttributes.getString(valueFromId); in getPVH() 297 String toString = styledAttributes.getString(valueToId); in getPVH() 335 valueFrom = styledAttributes.getDimension(valueFromId, 0f); in getPVH() 337 valueFrom = styledAttributes.getFloat(valueFromId, 0f); in getPVH() 341 valueTo = styledAttributes.getDimension(valueToId, 0f); in getPVH() 343 valueTo = styledAttributes.getFloat(valueToId, 0f); in getPVH() 352 valueTo = styledAttributes.getDimension(valueToId, 0f); in getPVH() [all …]
|
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/ |
D | CarFacetButton.java | 145 private void setupIcons(TypedArray styledAttributes) { 146 mSelectedAlpha = styledAttributes.getFloat( 148 mUnselectedAlpha = styledAttributes.getFloat( 154 mIconResourceId = styledAttributes.getResourceId(R.styleable.CarFacetButton_icon, 0); 156 mSelectedIconResourceId = styledAttributes.getResourceId( 163 mUseMoreIcon = styledAttributes.getBoolean(R.styleable.CarFacetButton_useMoreIcon, true);
|
/frameworks/base/core/java/android/widget/ |
D | QuickContactBadge.java | 96 TypedArray styledAttributes = mContext.obtainStyledAttributes(R.styleable.Theme); in QuickContactBadge() local 97 mOverlay = styledAttributes.getDrawable( in QuickContactBadge() 99 styledAttributes.recycle(); in QuickContactBadge()
|
D | Editor.java | 6412 TypedArray styledAttributes = mView.getContext().obtainStyledAttributes( 6414 currentId = styledAttributes.getResourceId(index, 0); 6415 styledAttributes.recycle();
|