Searched refs:typedArray (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/jellybean/android/support/v4/app/
H A DBundleUtil.java22 Bundle[] typedArray = Arrays.copyOf(array, array.length,
24 bundle.putParcelableArray(key, typedArray);
25 return typedArray;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DDrawerArrowDrawable.java64 final TypedArray typedArray = context.getTheme()
69 mPaint.setColor(typedArray.getColor(R.styleable.DrawerArrowToggle_color, 0));
70 mSize = typedArray.getDimensionPixelSize(R.styleable.DrawerArrowToggle_drawableSize, 0);
71 mBarSize = typedArray.getDimension(R.styleable.DrawerArrowToggle_barSize, 0);
72 mTopBottomArrowSize = typedArray
74 mBarThickness = typedArray.getDimension(R.styleable.DrawerArrowToggle_thickness, 0);
75 mBarGap = typedArray.getDimension(R.styleable.DrawerArrowToggle_gapBetweenBars, 0);
76 mSpin = typedArray.getBoolean(R.styleable.DrawerArrowToggle_spinBars, true);
77 mMiddleArrowSize = typedArray
79 typedArray
[all...]
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java170 TypedArray typedArray = context.obtainStyledAttributes(
172 mMisspelledUnderlineThickness = typedArray.getDimension(
174 mMisspelledUnderlineColor = typedArray.getColor(
178 typedArray = context.obtainStyledAttributes(
180 mEasyCorrectUnderlineThickness = typedArray.getDimension(
182 mEasyCorrectUnderlineColor = typedArray.getColor(
186 typedArray = context.obtainStyledAttributes(
188 mAutoCorrectionUnderlineThickness = typedArray.getDimension(
190 mAutoCorrectionUnderlineColor = typedArray.getColor(
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java39 TypedArray typedArray = context.obtainStyledAttributes(attrs,
41 mColumnCount = typedArray.getInteger(R.styleable.PrintOptionsLayout_columnCount, 0);
42 typedArray.recycle();
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java2787 Notification[] typedArray = new Notification[array.length];
2789 typedArray[i] = (Notification) array[i];
2791 bundle.putParcelableArray(key, typedArray);
2792 return typedArray;
/frameworks/base/core/java/android/app/
H A DFragment.java2273 private static Transition loadTransition(Context context, TypedArray typedArray, argument
2278 int transitionId = typedArray.getResourceId(id, 0);
H A DNotification.java4888 Notification[] typedArray = Arrays.copyOf(array, array.length,
4890 bundle.putParcelableArray(key, typedArray);
4891 return typedArray;

Completed in 248 milliseconds