HomeSort by relevance Sort by last modified time
    Searched refs:attributesArray (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/widget/
CalendarView.java 336 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.CalendarView,
338 mShowWeekNumber = attributesArray.getBoolean(R.styleable.CalendarView_showWeekNumber,
340 mFirstDayOfWeek = attributesArray.getInt(R.styleable.CalendarView_firstDayOfWeek,
342 String minDate = attributesArray.getString(R.styleable.CalendarView_minDate);
346 String maxDate = attributesArray.getString(R.styleable.CalendarView_maxDate);
353 mShownWeekCount = attributesArray.getInt(R.styleable.CalendarView_shownWeekCount,
355 mSelectedWeekBackgroundColor = attributesArray.getColor(
357 mFocusedMonthDateColor = attributesArray.getColor(
359 mUnfocusedMonthDateColor = attributesArray.getColor(
361 mWeekSeparatorLineColor = attributesArray.getColor
    [all...]
DatePicker.java 153 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.DatePicker,
155 boolean spinnersShown = attributesArray.getBoolean(R.styleable.DatePicker_spinnersShown,
157 boolean calendarViewShown = attributesArray.getBoolean(
159 int startYear = attributesArray.getInt(R.styleable.DatePicker_startYear,
161 int endYear = attributesArray.getInt(R.styleable.DatePicker_endYear, DEFAULT_END_YEAR);
162 String minDate = attributesArray.getString(R.styleable.DatePicker_minDate);
163 String maxDate = attributesArray.getString(R.styleable.DatePicker_maxDate);
164 int layoutResourceId = attributesArray.getResourceId(R.styleable.DatePicker_layout,
166 attributesArray.recycle();
NumberPicker.java 546 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
548 mSolidColor = attributesArray.getColor(R.styleable.NumberPicker_solidColor, 0);
549 mFlingable = attributesArray.getBoolean(R.styleable.NumberPicker_flingable, true);
550 mSelectionDivider = attributesArray.getDrawable(R.styleable.NumberPicker_selectionDivider);
554 mSelectionDividerHeight = attributesArray.getDimensionPixelSize(
556 mMinHeight = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_minHeight,
558 mMaxHeight = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_maxHeight,
564 mMinWidth = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_minWidth,
566 mMaxWidth = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_maxWidth,
573 attributesArray.recycle()
    [all...]
TimePicker.java 135 TypedArray attributesArray = context.obtainStyledAttributes(
137 int layoutResourceId = attributesArray.getResourceId(
139 attributesArray.recycle();
ActivityChooserView.java 207 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
210 mInitialActivityCount = attributesArray.getInt(
214 Drawable expandActivityOverflowButtonDrawable = attributesArray.getDrawable(
217 attributesArray.recycle();

Completed in 248 milliseconds