Searched defs:attrs (Results 276 - 300 of 352) sorted by relevance

<<1112131415

/frameworks/base/core/java/android/view/animation/
H A DAnimation.java229 * @param attrs the set of attributes holding the animation parameters
231 public Animation(Context context, AttributeSet attrs) { argument
232 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Animation);
/frameworks/base/core/java/android/widget/
H A DAdapterView.java229 public AdapterView(Context context, AttributeSet attrs) { argument
230 super(context, attrs);
233 public AdapterView(Context context, AttributeSet attrs, int defStyle) { argument
234 super(context, attrs, defStyle);
H A DAdapterViewAnimator.java171 public AdapterViewAnimator(Context context, AttributeSet attrs) { argument
172 this(context, attrs, 0);
175 public AdapterViewAnimator(Context context, AttributeSet attrs, int defStyleAttr) { argument
176 super(context, attrs, defStyleAttr);
178 TypedArray a = context.obtainStyledAttributes(attrs,
H A DAutoCompleteTextView.java132 public AutoCompleteTextView(Context context, AttributeSet attrs) { argument
133 this(context, attrs, com.android.internal.R.attr.autoCompleteTextViewStyle);
136 public AutoCompleteTextView(Context context, AttributeSet attrs, int defStyle) { argument
137 super(context, attrs, defStyle);
139 mPopup = new ListPopupWindow(context, attrs,
146 attrs, com.android.internal.R.styleable.AutoCompleteTextView, defStyle, 0);
H A DExpandableListView.java226 public ExpandableListView(Context context, AttributeSet attrs) { argument
227 this(context, attrs, com.android.internal.R.attr.expandableListViewStyle);
230 public ExpandableListView(Context context, AttributeSet attrs, int defStyle) { argument
231 super(context, attrs, defStyle);
234 context.obtainStyledAttributes(attrs,
H A DGallery.java195 public Gallery(Context context, AttributeSet attrs) { argument
196 this(context, attrs, R.attr.galleryStyle);
199 public Gallery(Context context, AttributeSet attrs, int defStyle) { argument
200 super(context, attrs, defStyle);
206 attrs, com.android.internal.R.styleable.Gallery, defStyle, 0);
335 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) { argument
336 return new LayoutParams(getContext(), attrs);
1531 public LayoutParams(Context c, AttributeSet attrs) { argument
1532 super(c, attrs);
H A DGridView.java109 public GridView(Context context, AttributeSet attrs) { argument
110 this(context, attrs, com.android.internal.R.attr.gridViewStyle);
113 public GridView(Context context, AttributeSet attrs, int defStyle) { argument
114 super(context, attrs, defStyle);
116 TypedArray a = context.obtainStyledAttributes(attrs,
H A DHorizontalScrollView.java145 public HorizontalScrollView(Context context, AttributeSet attrs) { argument
146 this(context, attrs, com.android.internal.R.attr.horizontalScrollViewStyle);
149 public HorizontalScrollView(Context context, AttributeSet attrs, int defStyle) { argument
150 super(context, attrs, defStyle);
153 TypedArray a = context.obtainStyledAttributes(attrs,
H A DImageView.java118 public ImageView(Context context, AttributeSet attrs) { argument
119 this(context, attrs, 0);
122 public ImageView(Context context, AttributeSet attrs, int defStyle) { argument
123 super(context, attrs, defStyle);
126 TypedArray a = context.obtainStyledAttributes(attrs,
H A DLinearLayout.java171 public LinearLayout(Context context, AttributeSet attrs) { argument
172 this(context, attrs, 0);
175 public LinearLayout(Context context, AttributeSet attrs, int defStyle) { argument
176 super(context, attrs, defStyle);
178 TypedArray a = context.obtainStyledAttributes(attrs,
1742 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
1743 return new LinearLayout.LayoutParams(getContext(), attrs);
1830 public LayoutParams(Context c, AttributeSet attrs) { argument
1831 super(c, attrs);
1833 c.obtainStyledAttributes(attrs, co
[all...]
H A DPopupWindow.java164 public PopupWindow(Context context, AttributeSet attrs) { argument
165 this(context, attrs, com.android.internal.R.attr.popupWindowStyle);
173 public PopupWindow(Context context, AttributeSet attrs, int defStyle) { argument
174 this(context, attrs, defStyle, 0);
182 public PopupWindow(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
188 attrs, com.android.internal.R.styleable.PopupWindow, defStyleAttr, defStyleRes);
H A DProgressBar.java241 public ProgressBar(Context context, AttributeSet attrs) { argument
242 this(context, attrs, com.android.internal.R.attr.progressBarStyle);
245 public ProgressBar(Context context, AttributeSet attrs, int defStyle) { argument
246 this(context, attrs, defStyle, 0);
252 public ProgressBar(Context context, AttributeSet attrs, int defStyle, int styleRes) { argument
253 super(context, attrs, defStyle);
258 context.obtainStyledAttributes(attrs, R.styleable.ProgressBar, defStyle, styleRes);
H A DRelativeLayout.java235 public RelativeLayout(Context context, AttributeSet attrs) { argument
236 super(context, attrs);
237 initFromAttributes(context, attrs);
241 public RelativeLayout(Context context, AttributeSet attrs, int defStyle) { argument
242 super(context, attrs, defStyle);
243 initFromAttributes(context, attrs);
247 private void initFromAttributes(Context context, AttributeSet attrs) { argument
248 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RelativeLayout);
1061 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
1062 return new RelativeLayout.LayoutParams(getContext(), attrs);
1224 LayoutParams(Context c, AttributeSet attrs) argument
[all...]
H A DScrollView.java161 public ScrollView(Context context, AttributeSet attrs) { argument
162 this(context, attrs, com.android.internal.R.attr.scrollViewStyle);
165 public ScrollView(Context context, AttributeSet attrs, int defStyle) { argument
166 super(context, attrs, defStyle);
170 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.ScrollView, defStyle, 0);
H A DSpinner.java125 * @param attrs The attributes of the XML tag that is inflating the view.
127 public Spinner(Context context, AttributeSet attrs) { argument
128 this(context, attrs, com.android.internal.R.attr.spinnerStyle);
137 * @param attrs The attributes of the XML tag that is inflating the view.
143 public Spinner(Context context, AttributeSet attrs, int defStyle) { argument
144 this(context, attrs, defStyle, MODE_THEME);
154 * @param attrs The attributes of the XML tag that is inflating the view.
164 public Spinner(Context context, AttributeSet attrs, int defStyle, int mode) { argument
165 super(context, attrs, defStyle);
167 TypedArray a = context.obtainStyledAttributes(attrs,
1034 DropdownPopup(Context context, AttributeSet attrs, int defStyleRes) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java735 public RecycleListView(Context context, AttributeSet attrs) { argument
736 super(context, attrs);
739 public RecycleListView(Context context, AttributeSet attrs, int defStyle) { argument
740 super(context, attrs, defStyle);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java104 private float mDiameterFactor = 0.10f; // TODO: move to attrs
242 public LockPatternView(Context context, AttributeSet attrs) { argument
243 super(context, attrs);
245 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.LockPatternView);
H A DSlidingTab.java56 private static final int HORIZONTAL = 0; // as defined in attrs.xml
445 public SlidingTab(Context context, AttributeSet attrs) { argument
446 super(context, attrs);
451 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SlidingTab);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java804 AttributeSet attrs)
809 TypedArray a = r.obtainAttributes(attrs,
860 a = r.obtainAttributes(attrs,
869 a = r.obtainAttributes(attrs,
968 a = r.obtainAttributes(attrs,
975 a = r.obtainAttributes(attrs,
992 a = r.obtainAttributes(attrs,
1017 a = r.obtainAttributes(attrs,
803 inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetPager.java95 public KeyguardWidgetPager(Context context, AttributeSet attrs) { argument
96 this(context, attrs, 0);
103 public KeyguardWidgetPager(Context context, AttributeSet attrs, int defStyle) { argument
104 super(context, attrs, defStyle);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java259 public RecentsPanelView(Context context, AttributeSet attrs) { argument
260 this(context, attrs, 0);
263 public RecentsPanelView(Context context, AttributeSet attrs, int defStyle) { argument
264 super(context, attrs, defStyle);
267 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RecentsPanelView,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java198 public NavigationBarView(Context context, AttributeSet attrs) { argument
199 super(context, attrs);
H A DPanelView.java324 public PanelView(Context context, AttributeSet attrs) { argument
325 super(context, attrs);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselView.java129 public CarouselView(Context context, AttributeSet attrs) { argument
130 this(context, attrs, new CarouselController());
133 public CarouselView(Context context, AttributeSet attrs, CarouselController controller) { argument
134 super(context, attrs);
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java201 public StaggeredGridView(Context context, AttributeSet attrs) { argument
202 this(context, attrs, 0);
205 public StaggeredGridView(Context context, AttributeSet attrs, int defStyle) { argument
206 super(context, attrs, defStyle);
1354 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) { argument
1355 return new LayoutParams(getContext(), attrs);
1425 public LayoutParams(Context c, AttributeSet attrs) { argument
1426 super(c, attrs);
1439 TypedArray a = c.obtainStyledAttributes(attrs, LAYOUT_ATTRS);

Completed in 351 milliseconds

<<1112131415