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 342 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.CalendarView,
344 mShowWeekNumber = attributesArray.getBoolean(R.styleable.CalendarView_showWeekNumber,
346 mFirstDayOfWeek = attributesArray.getInt(R.styleable.CalendarView_firstDayOfWeek,
348 String minDate = attributesArray.getString(R.styleable.CalendarView_minDate);
352 String maxDate = attributesArray.getString(R.styleable.CalendarView_maxDate);
359 mShownWeekCount = attributesArray.getInt(R.styleable.CalendarView_shownWeekCount,
361 mSelectedWeekBackgroundColor = attributesArray.getColor(
363 mFocusedMonthDateColor = attributesArray.getColor(
365 mUnfocusedMonthDateColor = attributesArray.getColor(
367 mWeekSeparatorLineColor = attributesArray.getColor
    [all...]
DatePicker.java 154 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.DatePicker,
156 boolean spinnersShown = attributesArray.getBoolean(R.styleable.DatePicker_spinnersShown,
158 boolean calendarViewShown = attributesArray.getBoolean(
160 int startYear = attributesArray.getInt(R.styleable.DatePicker_startYear,
162 int endYear = attributesArray.getInt(R.styleable.DatePicker_endYear, DEFAULT_END_YEAR);
163 String minDate = attributesArray.getString(R.styleable.DatePicker_minDate);
164 String maxDate = attributesArray.getString(R.styleable.DatePicker_maxDate);
165 int layoutResourceId = attributesArray.getResourceId(R.styleable.DatePicker_internalLayout,
167 attributesArray.recycle();
NumberPicker.java 563 TypedArray attributesArray = context.obtainStyledAttributes(
565 final int layoutResId = attributesArray.getResourceId(
570 mSolidColor = attributesArray.getColor(R.styleable.NumberPicker_solidColor, 0);
572 mSelectionDivider = attributesArray.getDrawable(R.styleable.NumberPicker_selectionDivider);
577 mSelectionDividerHeight = attributesArray.getDimensionPixelSize(
583 mSelectionDividersDistance = attributesArray.getDimensionPixelSize(
586 mMinHeight = attributesArray.getDimensionPixelSize(
589 mMaxHeight = attributesArray.getDimensionPixelSize(
596 mMinWidth = attributesArray.getDimensionPixelSize(
599 mMaxWidth = attributesArray.getDimensionPixelSize
    [all...]
TimePicker.java 136 TypedArray attributesArray = context.obtainStyledAttributes(
138 int layoutResourceId = attributesArray.getResourceId(
140 attributesArray.recycle();
ActivityChooserView.java 205 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
208 mInitialActivityCount = attributesArray.getInt(
212 Drawable expandActivityOverflowButtonDrawable = attributesArray.getDrawable(
215 attributesArray.recycle();

Completed in 147 milliseconds