Searched defs:attrs (Results 426 - 450 of 512) sorted by relevance

<<11121314151617181920>>

/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java361 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
363 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.RippleDrawable);
370 super.inflate(r, parser, attrs, theme);
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java690 public TtmlRenderingWidget(Context context, AttributeSet attrs) { argument
691 this(context, attrs, 0);
694 public TtmlRenderingWidget(Context context, AttributeSet attrs, int defStyleAttr) { argument
695 this(context, attrs, defStyleAttr, 0);
698 public TtmlRenderingWidget(Context context, AttributeSet attrs, int defStyleAttr, argument
700 super(context, attrs, defStyleAttr, defStyleRes);
/frameworks/base/media/java/android/media/session/
H A DMediaController.java815 public PlaybackInfo(int type, AudioAttributes attrs, int control, int max, int current) { argument
817 mAudioAttrs = attrs;
/frameworks/base/media/java/android/media/tv/
H A DTvView.java161 public TvView(Context context, AttributeSet attrs) { argument
162 this(context, attrs, 0);
165 public TvView(Context context, AttributeSet attrs, int defStyleAttr) { argument
166 super(context, attrs, defStyleAttr);
167 mAttrs = attrs;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java126 public KeyguardHostView(Context context, AttributeSet attrs) { argument
127 super(context, attrs);
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/egg/
H A DLLand.java170 public LLand(Context context, AttributeSet attrs) { argument
171 this(context, attrs, 0);
174 public LLand(Context context, AttributeSet attrs, int defStyle) { argument
175 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/
H A DActivatableNotificationView.java142 public ActivatableNotificationView(Context context, AttributeSet attrs) { argument
143 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java174 public NavigationBarView(Context context, AttributeSet attrs) { argument
175 super(context, attrs);
H A DPanelView.java177 public PanelView(Context context, AttributeSet attrs) { argument
178 super(context, attrs);
H A DStatusBarHeaderView.java125 public StatusBarHeaderView(Context context, AttributeSet attrs) { argument
126 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);
/frameworks/native/libs/gui/
H A DGLConsumer.cpp1116 EGLint attrs[] = { local
1126 attrs[2] = EGL_NONE;
1132 attrs[2] = EGL_NONE;
1136 EGL_NATIVE_BUFFER_ANDROID, cbuf, attrs);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseGridView.java181 public BaseGridView(Context context, AttributeSet attrs, int defStyle) { argument
182 super(context, attrs, defStyle);
196 protected void initBaseGridViewAttributes(Context context, AttributeSet attrs) { argument
197 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbBaseGridView);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java266 * @param attrs
268 public SwipeRefreshLayout(Context context, AttributeSet attrs) { argument
269 super(context, attrs);
279 final TypedArray a = context.obtainStyledAttributes(attrs, LAYOUT_ATTRS);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java1326 public LayoutParams(@NonNull Context c, AttributeSet attrs) { argument
1327 super(c, attrs);
1329 TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.ActionBarLayout);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java171 public ActionBarOverlayLayout(Context context, AttributeSet attrs) { argument
172 super(context, attrs);
352 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
353 return new LayoutParams(getContext(), attrs);
800 public LayoutParams(Context c, AttributeSet attrs) { argument
801 super(c, attrs);
H A DAdapterViewCompat.java233 AdapterViewCompat(Context context, AttributeSet attrs) { argument
234 super(context, attrs);
237 AdapterViewCompat(Context context, AttributeSet attrs, int defStyle) { argument
238 super(context, attrs, defStyle);
H A DSpinnerCompat.java122 * @param attrs The attributes of the XML tag that is inflating the view.
124 SpinnerCompat(Context context, AttributeSet attrs) { argument
125 this(context, attrs, R.attr.spinnerStyle);
134 * @param attrs The attributes of the XML tag that is inflating the view.
140 SpinnerCompat(Context context, AttributeSet attrs, int defStyle) { argument
141 this(context, attrs, defStyle, MODE_THEME);
151 * @param attrs The attributes of the XML tag that is inflating the view.
160 SpinnerCompat(Context context, AttributeSet attrs, int defStyle, int mode) { argument
161 super(context, attrs, defStyle);
163 TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs,
980 DropdownPopup( Context context, AttributeSet attrs, int defStyleAttr) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java145 public LinearLayoutCompat(Context context, AttributeSet attrs) { argument
146 this(context, attrs, 0);
149 public LinearLayoutCompat(Context context, AttributeSet attrs, int defStyleAttr) { argument
150 super(context, attrs, defStyleAttr);
152 final TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs,
1706 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
1707 return new LinearLayoutCompat.LayoutParams(getContext(), attrs);
1776 public LayoutParams(Context c, AttributeSet attrs) { argument
1777 super(c, attrs);
1779 c.obtainStyledAttributes(attrs,
[all...]
H A DSwitchCompat.java163 * @param attrs Specification of attributes that should deviate from default styling.
165 public SwitchCompat(Context context, AttributeSet attrs) { argument
166 this(context, attrs, R.attr.switchStyle);
174 * @param attrs Specification of attributes that should deviate from the default styling.
179 public SwitchCompat(Context context, AttributeSet attrs, int defStyleAttr) { argument
180 super(context, attrs, defStyleAttr);
188 attrs, R.styleable.SwitchCompat, defStyleAttr, 0);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewAnimationsTest.java1132 public TestRecyclerView(Context context, AttributeSet attrs) { argument
1133 super(context, attrs);
1136 public TestRecyclerView(Context context, AttributeSet attrs, int defStyle) { argument
1137 super(context, attrs, defStyle);
/frameworks/base/core/java/android/app/
H A DFragment.java1142 public void onInflate(AttributeSet attrs, Bundle savedInstanceState) { argument
1168 * {@sample development/samples/ApiDemos/res/values/attrs.xml fragment_arguments}
1183 * @param attrs The attributes at the tag where the fragment is
1188 public void onInflate(Activity activity, AttributeSet attrs, Bundle savedInstanceState) { argument
1189 onInflate(attrs, savedInstanceState);
1192 TypedArray a = activity.obtainStyledAttributes(attrs,
/frameworks/base/core/java/android/content/
H A DContext.java436 int[] attrs) {
437 return getTheme().obtainStyledAttributes(attrs);
448 int resid, int[] attrs) throws Resources.NotFoundException {
449 return getTheme().obtainStyledAttributes(resid, attrs);
460 AttributeSet set, int[] attrs) {
461 return getTheme().obtainStyledAttributes(set, attrs, 0, 0);
472 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
474 set, attrs, defStyleAttr, defStyleRes);
435 obtainStyledAttributes( int[] attrs) argument
447 obtainStyledAttributes( int resid, int[] attrs) argument
459 obtainStyledAttributes( AttributeSet set, int[] attrs) argument
471 obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument

Completed in 474 milliseconds

<<11121314151617181920>>