Searched refs:attrs (Results 276 - 300 of 347) sorted by relevance

<<11121314

/frameworks/base/core/java/android/preference/
H A DPreference.java201 * @param attrs The attributes of the XML tag that is inflating the preference.
209 public Preference(Context context, AttributeSet attrs, int defStyle) { argument
212 TypedArray a = context.obtainStyledAttributes(attrs,
293 * @param attrs The attributes of the XML tag that is inflating the
297 public Preference(Context context, AttributeSet attrs) { argument
298 this(context, attrs, com.android.internal.R.attr.preferenceStyle);
/frameworks/base/core/java/android/view/
H A DSurfaceView.java185 public SurfaceView(Context context, AttributeSet attrs) { argument
186 super(context, attrs);
190 public SurfaceView(Context context, AttributeSet attrs, int defStyle) { argument
191 super(context, attrs, defStyle);
H A DViewRootImpl.java464 public void setView(View view, WindowManager.LayoutParams attrs, View panelParentView) { argument
470 mWindowAttributes.copyFrom(attrs);
471 attrs = mWindowAttributes;
473 mClientWindowLayoutFlags = attrs.flags;
491 enableHardwareAcceleration(mView.getContext(), attrs);
498 attrs.backup();
499 mTranslator.translateWindowLayout(attrs);
501 if (DEBUG_LAYOUT) Log.d(TAG, "WindowLayout in setView:" + attrs);
504 attrs.flags |= WindowManager.LayoutParams.FLAG_COMPATIBLE_WINDOW;
508 mSoftInputMode = attrs
682 enableHardwareAcceleration(Context context, WindowManager.LayoutParams attrs) argument
755 setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAdapterView.java230 public AdapterView(Context context, AttributeSet attrs) { argument
231 super(context, attrs);
234 public AdapterView(Context context, AttributeSet attrs, int defStyle) { argument
235 super(context, attrs, defStyle);
H A DDialerFilter.java44 public DialerFilter(Context context, AttributeSet attrs) { argument
45 super(context, attrs);
H A DSearchView.java244 public SearchView(Context context, AttributeSet attrs) { argument
245 super(context, attrs);
284 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SearchView, 0, 0);
307 a = context.obtainStyledAttributes(attrs, R.styleable.View, 0, 0);
1658 public SearchAutoComplete(Context context, AttributeSet attrs) { argument
1659 super(context, attrs);
1663 public SearchAutoComplete(Context context, AttributeSet attrs, int defStyle) { argument
1664 super(context, attrs, defStyle);
H A DPopupWindow.java161 public PopupWindow(Context context, AttributeSet attrs) { argument
162 this(context, attrs, com.android.internal.R.attr.popupWindowStyle);
170 public PopupWindow(Context context, AttributeSet attrs, int defStyle) { argument
171 this(context, attrs, defStyle, 0);
179 public PopupWindow(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
185 attrs, com.android.internal.R.styleable.PopupWindow, defStyleAttr, defStyleRes);
H A DStackView.java163 public StackView(Context context, AttributeSet attrs) { argument
164 this(context, attrs, com.android.internal.R.attr.stackViewStyle);
170 public StackView(Context context, AttributeSet attrs, int defStyleAttr) { argument
171 super(context, attrs, defStyleAttr);
172 TypedArray a = context.obtainStyledAttributes(attrs,
1286 LayoutParams(Context c, AttributeSet attrs) { argument
1287 super(c, attrs);
H A DCalendarView.java332 public CalendarView(Context context, AttributeSet attrs) { argument
333 this(context, attrs, 0);
336 public CalendarView(Context context, AttributeSet attrs, int defStyle) { argument
337 super(context, attrs, 0);
342 TypedArray attributesArray = context.obtainStyledAttributes(attrs, R.styleable.CalendarView,
H A DHorizontalScrollView.java140 public HorizontalScrollView(Context context, AttributeSet attrs) { argument
141 this(context, attrs, com.android.internal.R.attr.horizontalScrollViewStyle);
144 public HorizontalScrollView(Context context, AttributeSet attrs, int defStyle) { argument
145 super(context, attrs, defStyle);
148 TypedArray a = context.obtainStyledAttributes(attrs,
H A DScrollView.java156 public ScrollView(Context context, AttributeSet attrs) { argument
157 this(context, attrs, com.android.internal.R.attr.scrollViewStyle);
160 public ScrollView(Context context, AttributeSet attrs, int defStyle) { argument
161 super(context, attrs, defStyle);
165 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.ScrollView, defStyle, 0);
H A DTabHost.java79 public TabHost(Context context, AttributeSet attrs) { argument
80 super(context, attrs);
82 TypedArray a = context.obtainStyledAttributes(attrs,
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardWidgetPager.java82 public KeyguardWidgetPager(Context context, AttributeSet attrs) { argument
83 this(context, attrs, 0);
90 public KeyguardWidgetPager(Context context, AttributeSet attrs, int defStyle) { argument
91 super(context, attrs, defStyle);
H A DKeyguardPatternView.java102 public KeyguardPatternView(Context context, AttributeSet attrs) { argument
103 super(context, attrs);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java184 public TypedArray obtainAttributes(AttributeSet set, int[] attrs) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodsPanel.java102 public InputMethodsPanel(Context context, AttributeSet attrs) { argument
103 this(context, attrs, 0);
106 public InputMethodsPanel(Context context, AttributeSet attrs, int defStyle) { argument
107 super(context, attrs, defStyle);
/frameworks/base/core/java/android/app/
H A DNativeActivity.java116 public NativeContentView(Context context, AttributeSet attrs) { argument
117 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java80 public StatusBarIconView(Context context, AttributeSet attrs) { argument
81 super(context, attrs);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowStateAnimator.java635 final WindowManager.LayoutParams attrs = mWin.mAttrs;
637 if ((attrs.flags&WindowManager.LayoutParams.FLAG_SECURE) != 0) {
645 + attrs.format + " flags=" + flags);
649 if ((attrs.flags & LayoutParams.FLAG_SCALED) != 0) {
670 final boolean isHwAccelerated = (attrs.flags &
672 final int format = isHwAccelerated ? PixelFormat.TRANSLUCENT : attrs.format;
673 if (!PixelFormat.formatHasAlpha(attrs.format)) {
679 attrs.getTitle().toString(),
684 attrs.getTitle().toString(),
693 + attrs
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java244 public RecentsPanelView(Context context, AttributeSet attrs) { argument
245 this(context, attrs, 0);
248 public RecentsPanelView(Context context, AttributeSet attrs, int defStyle) { argument
249 super(context, attrs, defStyle);
252 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RecentsPanelView,
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java427 AttributeSet attrs = Xml.asAttributeSet(parser);
441 si.packageName, attrs);
547 String packageName, AttributeSet attrs);
546 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java170 public RotarySelector(Context context, AttributeSet attrs) { argument
171 super(context, attrs);
174 context.obtainStyledAttributes(attrs, R.styleable.RotarySelector);
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java247 AttributeSet attrs = Xml.asAttributeSet(parser);
260 TypedArray sa = res.obtainAttributes(attrs,
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java210 final AttributeSet attrs = Xml.asAttributeSet(parser);
211 final TypedArray array = res.obtainAttributes(attrs,
/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);

Completed in 454 milliseconds

<<11121314