HomeSort by relevance Sort by last modified time
    Searched refs:styleable (Results 151 - 175 of 598) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/preference/
RingtonePreference.java 39 * @attr ref android.R.styleable#RingtonePreference_ringtoneType
40 * @attr ref android.R.styleable#RingtonePreference_showDefault
41 * @attr ref android.R.styleable#RingtonePreference_showSilent
58 com.android.internal.R.styleable.RingtonePreference, defStyleAttr, defStyleRes);
59 mRingtoneType = a.getInt(com.android.internal.R.styleable.RingtonePreference_ringtoneType,
61 mShowDefault = a.getBoolean(com.android.internal.R.styleable.RingtonePreference_showDefault,
63 mShowSilent = a.getBoolean(com.android.internal.R.styleable.RingtonePreference_showSilent,
  /frameworks/base/core/java/android/transition/
ArcMotion.java 65 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ArcMotion);
66 float minimumVerticalAngle = a.getFloat(R.styleable.ArcMotion_minimumVerticalAngle,
69 float minimumHorizontalAngle = a.getFloat(R.styleable.ArcMotion_minimumHorizontalAngle,
72 float maximumAngle = a.getFloat(R.styleable.ArcMotion_maximumAngle,
88 * @attr ref android.R.styleable#ArcMotion_minimumHorizontalAngle
104 * @attr ref android.R.styleable#ArcMotion_minimumHorizontalAngle
120 * @attr ref android.R.styleable#ArcMotion_minimumVerticalAngle
137 * @attr ref android.R.styleable#ArcMotion_minimumVerticalAngle
151 * @attr ref android.R.styleable#ArcMotion_maximumAngle
166 * @attr ref android.R.styleable#ArcMotion_maximumAngl
    [all...]
  /frameworks/base/core/java/android/view/
ViewStub.java 69 * @attr ref android.R.styleable#ViewStub_inflatedId
70 * @attr ref android.R.styleable#ViewStub_layout
110 R.styleable.ViewStub, defStyleAttr, defStyleRes);
111 mInflatedId = a.getResourceId(R.styleable.ViewStub_inflatedId, NO_ID);
112 mLayoutResource = a.getResourceId(R.styleable.ViewStub_layout, 0);
113 mID = a.getResourceId(R.styleable.ViewStub_id, NO_ID);
128 * @attr ref android.R.styleable#ViewStub_inflatedId
143 * @attr ref android.R.styleable#ViewStub_inflatedId
160 * @attr ref android.R.styleable#ViewStub_layout
177 * @attr ref android.R.styleable#ViewStub_layou
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 97 attrs, R.styleable.SeekBar, defStyleAttr, defStyleRes);
99 final Drawable thumb = a.getDrawable(R.styleable.SeekBar_thumb);
102 if (a.hasValue(R.styleable.SeekBar_thumbTintMode)) {
104 R.styleable.SeekBar_thumbTintMode, -1), mThumbTintMode);
108 if (a.hasValue(R.styleable.SeekBar_thumbTint)) {
109 mThumbTintList = a.getColorStateList(R.styleable.SeekBar_thumbTint);
113 final Drawable tickMark = a.getDrawable(R.styleable.SeekBar_tickMark);
116 if (a.hasValue(R.styleable.SeekBar_tickMarkTintMode)) {
118 R.styleable.SeekBar_tickMarkTintMode, -1), mTickMarkTintMode);
122 if (a.hasValue(R.styleable.SeekBar_tickMarkTint))
    [all...]
CheckedTextView.java 49 * @attr ref android.R.styleable#CheckedTextView_checked
50 * @attr ref android.R.styleable#CheckedTextView_checkMark
88 attrs, R.styleable.CheckedTextView, defStyleAttr, defStyleRes);
90 final Drawable d = a.getDrawable(R.styleable.CheckedTextView_checkMark);
95 if (a.hasValue(R.styleable.CheckedTextView_checkMarkTintMode)) {
97 R.styleable.CheckedTextView_checkMarkTintMode, -1), mCheckMarkTintMode);
101 if (a.hasValue(R.styleable.CheckedTextView_checkMarkTint)) {
102 mCheckMarkTintList = a.getColorStateList(R.styleable.CheckedTextView_checkMarkTint);
106 mCheckMarkGravity = a.getInt(R.styleable.CheckedTextView_checkMarkGravity, Gravity.END);
108 final boolean checked = a.getBoolean(R.styleable.CheckedTextView_checked, false)
    [all...]
ProgressBar.java 135 * android.R.styleable#ProgressBar_max android:max} attribute. Other attributes available are listed
177 * See {@link android.R.styleable#ProgressBar ProgressBar Attributes},
178 * {@link android.R.styleable#View View Attributes}
181 * @attr ref android.R.styleable#ProgressBar_animationResolution
182 * @attr ref android.R.styleable#ProgressBar_indeterminate
183 * @attr ref android.R.styleable#ProgressBar_indeterminateBehavior
184 * @attr ref android.R.styleable#ProgressBar_indeterminateDrawable
185 * @attr ref android.R.styleable#ProgressBar_indeterminateDuration
186 * @attr ref android.R.styleable#ProgressBar_indeterminateOnly
187 * @attr ref android.R.styleable#ProgressBar_interpolato
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 119 public Entry get(String packageName, int resId, int[] styleable, int userId) {
127 ent = map.get(styleable);
154 pkg.context.obtainStyledAttributes(resId, styleable));
155 map.put(styleable, ent);
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
DividerItemDecoration.java 89 final TypedArray a = context.obtainStyledAttributes(R.styleable.SuwDividerItemDecoration);
91 R.styleable.SuwDividerItemDecoration_android_listDivider);
93 R.styleable.SuwDividerItemDecoration_android_dividerHeight, 0);
95 R.styleable.SuwDividerItemDecoration_suwDividerCondition,
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/items/
RecyclerItemAdapter.java 79 .obtainStyledAttributes(R.styleable.SuwRecyclerItemAdapter);
81 R.styleable.SuwRecyclerItemAdapter_android_selectableItemBackground);
84 R.styleable.SuwRecyclerItemAdapter_selectableItemBackground);
88 R.styleable.SuwRecyclerItemAdapter_android_colorBackground);
  /frameworks/support/design/src/android/support/design/internal/
ForegroundLinearLayout.java 58 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ForegroundLinearLayout,
62 R.styleable.ForegroundLinearLayout_android_foregroundGravity, mForegroundGravity);
64 final Drawable d = a.getDrawable(R.styleable.ForegroundLinearLayout_android_foreground);
70 R.styleable.ForegroundLinearLayout_foregroundInsidePadding, true);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
ColorOverlayDimmer.java 42 TypedArray a = context.obtainStyledAttributes(R.styleable.LeanbackTheme);
44 int dimColor = a.getColor(R.styleable.LeanbackTheme_overlayDimMaskColor,
46 float activeLevel = a.getFraction(R.styleable.LeanbackTheme_overlayDimActiveLevel, 1, 1,
48 float dimmedLevel = a.getFraction(R.styleable.LeanbackTheme_overlayDimDimmedLevel, 1, 1,
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ViewStubCompat.java 53 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ViewStubCompat,
56 mInflatedId = a.getResourceId(R.styleable.ViewStubCompat_android_inflatedId, NO_ID);
57 mLayoutResource = a.getResourceId(R.styleable.ViewStubCompat_android_layout, 0);
59 setId(a.getResourceId(R.styleable.ViewStubCompat_android_id, NO_ID));
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 84 attrs, R.styleable.CalculatorEditText, defStyle, 0);
86 R.styleable.CalculatorEditText_maxTextSize, getTextSize());
88 R.styleable.CalculatorEditText_minTextSize, getTextSize());
89 mStepTextSize = a.getDimension(R.styleable.CalculatorEditText_stepTextSize,
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
SoundLevels.java 85 final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SoundLevels,
89 R.styleable.SoundLevels_maxLevelRadius, 0);
91 R.styleable.SoundLevels_minLevelRadius, 0);
96 a.getColor(R.styleable.SoundLevels_primaryColor, Color.BLACK));
  /packages/apps/Settings/src/com/android/settings/
RingtonePreference.java 41 * @attr ref android.R.styleable#RingtonePreference_ringtoneType
42 * @attr ref android.R.styleable#RingtonePreference_showDefault
43 * @attr ref android.R.styleable#RingtonePreference_showSilent
62 com.android.internal.R.styleable.RingtonePreference, 0, 0);
63 mRingtoneType = a.getInt(com.android.internal.R.styleable.RingtonePreference_ringtoneType,
65 mShowDefault = a.getBoolean(com.android.internal.R.styleable.RingtonePreference_showDefault,
67 mShowSilent = a.getBoolean(com.android.internal.R.styleable.RingtonePreference_showSilent,
TrustAgentUtils.java 96 res.obtainAttributes(attrs, com.android.internal.R.styleable.TrustAgent);
98 sa.getString(com.android.internal.R.styleable.TrustAgent_summary);
100 sa.getString(com.android.internal.R.styleable.TrustAgent_title);
101 cn = sa.getString(com.android.internal.R.styleable.TrustAgent_settingsActivity);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ButteryProgressBar.java 88 final TypedArray ta = c.obtainStyledAttributes(attrs, R.styleable.ButteryProgressBar);
90 mBarColor = ta.getColor(R.styleable.ButteryProgressBar_barColor,
93 R.styleable.ButteryProgressBar_barHeight,
96 R.styleable.ButteryProgressBar_detentWidth,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SeekBarDialogPreference.java 54 attrs, R.styleable.SeekBarDialogPreference, 0, 0);
55 mMaxValue = a.getInt(R.styleable.SeekBarDialogPreference_maxValue, 0);
56 mMinValue = a.getInt(R.styleable.SeekBarDialogPreference_minValue, 0);
57 mStepValue = a.getInt(R.styleable.SeekBarDialogPreference_stepValue, 0);
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 45 * @attr ref android.R.styleable#IconMenuView_rowHeight
46 * @attr ref android.R.styleable#IconMenuView_maxRows
47 * @attr ref android.R.styleable#IconMenuView_maxItemsPerRow
132 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.IconMenuView, 0, 0);
133 mRowHeight = a.getDimensionPixelSize(com.android.internal.R.styleable.IconMenuView_rowHeight, 64);
134 mMaxRows = a.getInt(com.android.internal.R.styleable.IconMenuView_maxRows, 2);
135 mMaxItems = a.getInt(com.android.internal.R.styleable.IconMenuView_maxItems, 6);
136 mMaxItemsPerRow = a.getInt(com.android.internal.R.styleable.IconMenuView_maxItemsPerRow, 3);
137 mMoreIcon = a.getDrawable(com.android.internal.R.styleable.IconMenuView_moreIcon);
140 a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.MenuView, 0, 0)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 494 state.mThemeAttrs, R.styleable.VectorDrawable);
594 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.VectorDrawable);
617 final int tintMode = a.getInt(R.styleable.VectorDrawable_tintMode, -1);
622 final ColorStateList tint = a.getColorStateList(R.styleable.VectorDrawable_tint);
628 R.styleable.VectorDrawable_autoMirrored, state.mAutoMirrored);
631 R.styleable.VectorDrawable_viewportWidth, state.mViewportWidth);
633 R.styleable.VectorDrawable_viewportHeight, state.mViewportHeight);
645 R.styleable.VectorDrawable_width, state.mBaseWidth);
647 R.styleable.VectorDrawable_height, state.mBaseHeight);
658 R.styleable.VectorDrawable_opticalInsetLeft, state.mOpticalInsets.left)
    [all...]
  /frameworks/support/percent/src/android/support/percent/
PercentLayoutHelper.java 150 TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.PercentLayout_Layout);
151 float value = array.getFraction(R.styleable.PercentLayout_Layout_layout_widthPercent, 1, 1,
160 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_heightPercent, 1, 1, -1f);
168 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginPercent, 1, 1, -1f);
179 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginLeftPercent, 1, 1,
188 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginTopPercent, 1, 1,
197 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginRightPercent, 1, 1,
206 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginBottomPercent, 1, 1,
215 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginStartPercent, 1, 1,
224 value = array.getFraction(R.styleable.PercentLayout_Layout_layout_marginEndPercent, 1, 1
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 125 com.android.internal.R.styleable.Wallpaper);
127 com.android.internal.R.styleable.Wallpaper_settingsActivity);
130 com.android.internal.R.styleable.Wallpaper_thumbnail,
133 com.android.internal.R.styleable.Wallpaper_author,
136 com.android.internal.R.styleable.Wallpaper_description,
139 com.android.internal.R.styleable.Wallpaper_contextUri,
142 com.android.internal.R.styleable.Wallpaper_contextDescription,
145 com.android.internal.R.styleable.Wallpaper_showMetadataInPreview,
  /frameworks/base/core/java/com/android/internal/view/
ActionBarPolicy.java 89 TypedArray a = mContext.obtainStyledAttributes(null, R.styleable.ActionBar,
91 int height = a.getLayoutDimension(R.styleable.ActionBar_height, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
AnimatedImageView.java 48 R.styleable.AnimatedImageView, 0, 0);
53 R.styleable.AnimatedImageView_hasOverlappingRendering, true);
  /frameworks/base/tools/layoutlib/bridge/src/android/preference/
Preference_Delegate.java 68 TypedArray a = context.obtainStyledAttributes(null, R.styleable.PreferenceFragment,
70 int mLayoutResId = a.getResourceId(R.styleable.PreferenceFragment_layout,

Completed in 1640 milliseconds

1 2 3 4 5 67 8 91011>>