HomeSort by relevance Sort by last modified time
    Searched full:attributesarray (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/widget/
DatePicker.java 158 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.DatePicker,
160 boolean spinnersShown = attributesArray.getBoolean(R.styleable.DatePicker_spinnersShown,
162 boolean calendarViewShown = attributesArray.getBoolean(
164 int startYear = attributesArray.getInt(R.styleable.DatePicker_startYear,
166 int endYear = attributesArray.getInt(R.styleable.DatePicker_endYear, DEFAULT_END_YEAR);
167 String minDate = attributesArray.getString(R.styleable.DatePicker_minDate);
168 String maxDate = attributesArray.getString(R.styleable.DatePicker_maxDate);
169 int layoutResourceId = attributesArray.getResourceId(R.styleable.DatePicker_internalLayout,
171 attributesArray.recycle();
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...]
NumberPicker.java 568 TypedArray attributesArray = context.obtainStyledAttributes(
570 final int layoutResId = attributesArray.getResourceId(
575 mSolidColor = attributesArray.getColor(R.styleable.NumberPicker_solidColor, 0);
577 mSelectionDivider = attributesArray.getDrawable(R.styleable.NumberPicker_selectionDivider);
582 mSelectionDividerHeight = attributesArray.getDimensionPixelSize(
588 mSelectionDividersDistance = attributesArray.getDimensionPixelSize(
591 mMinHeight = attributesArray.getDimensionPixelSize(
594 mMaxHeight = attributesArray.getDimensionPixelSize(
601 mMinWidth = attributesArray.getDimensionPixelSize(
604 mMaxWidth = attributesArray.getDimensionPixelSize
    [all...]
TimePicker.java 141 TypedArray attributesArray = context.obtainStyledAttributes(
143 int layoutResourceId = attributesArray.getResourceId(
145 attributesArray.recycle();
ActivityChooserView.java 212 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
215 mInitialActivityCount = attributesArray.getInt(
219 Drawable expandActivityOverflowButtonDrawable = attributesArray.getDrawable(
222 attributesArray.recycle();
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActivityChooserView.java 211 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
214 mInitialActivityCount = attributesArray.getInt(
218 Drawable expandActivityOverflowButtonDrawable = attributesArray.getDrawable(
221 attributesArray.recycle();

Completed in 1447 milliseconds