/frameworks/base/core/java/android/widget/ |
TwoLineListItem.java | 36 * @attr ref android.R.styleable#TwoLineListItem_mode 64 attrs, com.android.internal.R.styleable.TwoLineListItem, defStyleAttr, defStyleRes);
|
CompoundButton.java | 52 * See {@link android.R.styleable#CompoundButton 53 * CompoundButton Attributes}, {@link android.R.styleable#Button Button 54 * Attributes}, {@link android.R.styleable#TextView TextView Attributes}, {@link 55 * android.R.styleable#View View Attributes} 97 attrs, com.android.internal.R.styleable.CompoundButton, defStyleAttr, defStyleRes); 99 final Drawable d = a.getDrawable(com.android.internal.R.styleable.CompoundButton_button); 104 if (a.hasValue(R.styleable.CompoundButton_buttonTintMode)) { 106 R.styleable.CompoundButton_buttonTintMode, -1), mButtonTintMode); 110 if (a.hasValue(R.styleable.CompoundButton_buttonTint)) { 111 mButtonTintList = a.getColorStateList(R.styleable.CompoundButton_buttonTint) [all...] |
AutoCompleteTextView.java | 86 * @attr ref android.R.styleable#AutoCompleteTextView_completionHint 87 * @attr ref android.R.styleable#AutoCompleteTextView_completionThreshold 88 * @attr ref android.R.styleable#AutoCompleteTextView_completionHintView 89 * @attr ref android.R.styleable#AutoCompleteTextView_dropDownSelector 90 * @attr ref android.R.styleable#AutoCompleteTextView_dropDownAnchor 91 * @attr ref android.R.styleable#AutoCompleteTextView_dropDownWidth 92 * @attr ref android.R.styleable#AutoCompleteTextView_dropDownHeight 93 * @attr ref android.R.styleable#ListPopupWindow_dropDownVerticalOffset 94 * @attr ref android.R.styleable#ListPopupWindow_dropDownHorizontalOffset 216 * {@link android.R.styleable#AutoCompleteTextView_popupTheme} [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
BitmapDrawable.java | 68 * @attr ref android.R.styleable#BitmapDrawable_src 69 * @attr ref android.R.styleable#BitmapDrawable_antialias 70 * @attr ref android.R.styleable#BitmapDrawable_filter 71 * @attr ref android.R.styleable#BitmapDrawable_dither 72 * @attr ref android.R.styleable#BitmapDrawable_gravity 73 * @attr ref android.R.styleable#BitmapDrawable_mipMap 74 * @attr ref android.R.styleable#BitmapDrawable_tileMode 80 // Constants for {@link android.R.styleable#BitmapDrawable_tileMode}. 321 * @attr ref android.R.styleable#BitmapDrawable_mipMap 400 * @attr ref android.R.styleable#BitmapDrawable_tileMode [all...] |
LevelListDrawable.java | 56 * @attr ref android.R.styleable#LevelListDrawableItem_minLevel 57 * @attr ref android.R.styleable#LevelListDrawableItem_maxLevel 58 * @attr ref android.R.styleable#LevelListDrawableItem_drawable 116 com.android.internal.R.styleable.LevelListDrawableItem); 119 com.android.internal.R.styleable.LevelListDrawableItem_minLevel, 0); 121 com.android.internal.R.styleable.LevelListDrawableItem_maxLevel, 0); 123 com.android.internal.R.styleable.LevelListDrawableItem_drawable, 0);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
PseudoGridView.java | 45 final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.PseudoGridView); 51 case R.styleable.PseudoGridView_numColumns: 54 case R.styleable.PseudoGridView_verticalSpacing: 57 case R.styleable.PseudoGridView_horizontalSpacing:
|
/frameworks/support/design/src/android/support/design/widget/ |
AppBarLayout.java | 171 final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AppBarLayout, 173 ViewCompat.setBackground(this, a.getDrawable(R.styleable.AppBarLayout_android_background)); 174 if (a.hasValue(R.styleable.AppBarLayout_expanded)) { 175 setExpanded(a.getBoolean(R.styleable.AppBarLayout_expanded, false), false, false); 177 if (Build.VERSION.SDK_INT >= 21 && a.hasValue(R.styleable.AppBarLayout_elevation)) { 179 this, a.getDimensionPixelSize(R.styleable.AppBarLayout_elevation, 0)); 184 if (a.hasValue(R.styleable.AppBarLayout_android_keyboardNavigationCluster)) { 186 R.styleable.AppBarLayout_android_keyboardNavigationCluster, false)); 188 if (a.hasValue(R.styleable.AppBarLayout_android_touchscreenBlocksFocus)) { 190 R.styleable.AppBarLayout_android_touchscreenBlocksFocus, false)) [all...] |
/packages/apps/Dialer/java/com/android/incallui/incall/impl/ |
CheckableLabeledButton.java | 71 context.obtainStyledAttributes(attrs, R.styleable.CheckableLabeledButton); 72 icon = typedArray.getDrawable(R.styleable.CheckableLabeledButton_incall_icon); 73 labelText = typedArray.getString(R.styleable.CheckableLabeledButton_incall_labelText); 74 enabled = typedArray.getBoolean(R.styleable.CheckableLabeledButton_android_enabled, true);
|
/packages/apps/Settings/src/com/android/settings/widget/ |
SeekBarPreference.java | 56 attrs, com.android.internal.R.styleable.ProgressBar, defStyleAttr, defStyleRes); 57 setMax(a.getInt(com.android.internal.R.styleable.ProgressBar_max, mMax)); 61 com.android.internal.R.styleable.SeekBarPreference, defStyleAttr, defStyleRes); 63 com.android.internal.R.styleable.SeekBarPreference_layout,
|
ChartNetworkSeriesView.java | 90 attrs, R.styleable.ChartNetworkSeriesView, defStyle, 0); 92 final int stroke = a.getColor(R.styleable.ChartNetworkSeriesView_strokeColor, Color.RED); 93 final int fill = a.getColor(R.styleable.ChartNetworkSeriesView_fillColor, Color.RED); 95 R.styleable.ChartNetworkSeriesView_fillColorSecondary, Color.RED); 97 R.styleable.ChartNetworkSeriesView_safeRegion, 0);
|
/frameworks/base/core/java/android/content/res/ |
ColorStateList.java | 122 * @attr ref android.R.styleable#ColorStateListItem_alpha 123 * @attr ref android.R.styleable#ColorStateListItem_color 325 R.styleable.ColorStateListItem); 327 final int baseColor = a.getColor(R.styleable.ColorStateListItem_color, Color.MAGENTA); 328 final float alphaMod = a.getFloat(R.styleable.ColorStateListItem_alpha, 1.0f); 423 R.styleable.ColorStateListItem); 426 if (themeAttrsList[i][R.styleable.ColorStateListItem_color] != 0) { 448 R.styleable.ColorStateListItem_color, mColors[i]); 450 R.styleable.ColorStateListItem_alpha, defaultAlphaMod);
|
/frameworks/base/core/java/android/view/animation/ |
AnimationSet.java | 84 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.AnimationSet); 87 a.getBoolean(com.android.internal.R.styleable.AnimationSet_shareInterpolator, true)); 92 if (a.hasValue(com.android.internal.R.styleable.AnimationSet_duration)) { 95 if (a.hasValue(com.android.internal.R.styleable.AnimationSet_fillBefore)) { 98 if (a.hasValue(com.android.internal.R.styleable.AnimationSet_fillAfter)) { 101 if (a.hasValue(com.android.internal.R.styleable.AnimationSet_repeatMode)) { 104 if (a.hasValue(com.android.internal.R.styleable.AnimationSet_startOffset)) {
|
/frameworks/base/core/java/com/android/internal/widget/ |
ActionBarContextView.java | 74 attrs, R.styleable.ActionMode, defStyleAttr, defStyleRes); 76 com.android.internal.R.styleable.ActionMode_background)); 78 com.android.internal.R.styleable.ActionMode_titleTextStyle, 0); 80 com.android.internal.R.styleable.ActionMode_subtitleTextStyle, 0); 83 com.android.internal.R.styleable.ActionMode_height, 0); 86 com.android.internal.R.styleable.ActionMode_backgroundSplit); 89 com.android.internal.R.styleable.ActionMode_closeItemLayout,
|
SubtitleView.java | 94 attrs, android.R.styleable.TextView, defStyleAttr, defStyleRes); 104 case android.R.styleable.TextView_text: 107 case android.R.styleable.TextView_lineSpacingExtra: 110 case android.R.styleable.TextView_lineSpacingMultiplier: 113 case android.R.styleable.TextAppearance_textSize:
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardLayoutSet.java | 368 R.styleable.KeyboardLayoutSet_Feature); 371 featureAttr.getInt(R.styleable.KeyboardLayoutSet_Feature_supportedScript, 445 R.styleable.KeyboardLayoutSet_Element); 448 R.styleable.KeyboardLayoutSet_Element_elementName, "elementName", 451 R.styleable.KeyboardLayoutSet_Element_elementKeyboard, "elementKeyboard", 457 R.styleable.KeyboardLayoutSet_Element_elementName, 0); 459 R.styleable.KeyboardLayoutSet_Element_elementKeyboard, 0); 461 R.styleable.KeyboardLayoutSet_Element_enableProximityCharsCorrection, 464 R.styleable.KeyboardLayoutSet_Element_supportsSplitLayout, false); 466 R.styleable.KeyboardLayoutSet_Element_allowRedundantMoreKeys, true) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
EmojiPalettesView.java | 101 R.styleable.KeyboardView, defStyle, R.style.KeyboardView); 103 R.styleable.KeyboardView_keyBackground, 0); 105 R.styleable.KeyboardView_functionalKeyBackground, keyBackgroundId); 107 R.styleable.KeyboardView_spacebarBackground, keyBackgroundId); 118 R.styleable.EmojiPalettesView, defStyle, R.style.EmojiPalettesView); 122 R.styleable.EmojiPalettesView_categoryIndicatorEnabled, false); 124 R.styleable.EmojiPalettesView_categoryIndicatorDrawable, 0); 126 R.styleable.EmojiPalettesView_categoryIndicatorBackground, 0); 128 R.styleable.EmojiPalettesView_categoryPageIndicatorColor, 0); 130 R.styleable.EmojiPalettesView_categoryPageIndicatorBackground, 0) [all...] |
/frameworks/base/core/java/android/app/ |
MediaRouteButton.java | 83 com.android.internal.R.styleable.MediaRouteButton, defStyleAttr, defStyleRes); 85 com.android.internal.R.styleable.MediaRouteButton_externalRouteEnabledDrawable)); 87 com.android.internal.R.styleable.MediaRouteButton_minWidth, 0); 89 com.android.internal.R.styleable.MediaRouteButton_minHeight, 0); 91 com.android.internal.R.styleable.MediaRouteButton_mediaRouteTypes,
|
/frameworks/base/core/java/android/hardware/soundtrigger/ |
KeyphraseEnrollmentInfo.java | 56 * android.R.styleable#VoiceEnrollmentApplication 193 com.android.internal.R.styleable.VoiceEnrollmentApplication); 218 com.android.internal.R.styleable.VoiceEnrollmentApplication_searchKeyphraseId, -1); 228 com.android.internal.R.styleable.VoiceEnrollmentApplication_searchKeyphrase); 238 com.android.internal.R.styleable 268 int recognitionModes = array.getInt(com.android.internal.R.styleable
|
/frameworks/base/core/java/android/preference/ |
PreferenceFragment.java | 172 com.android.internal.R.styleable.PreferenceFragment, 176 mLayoutResId = a.getResourceId(com.android.internal.R.styleable.PreferenceFragment_layout, 189 com.android.internal.R.styleable.PreferenceFragment, 195 && a.hasValueOrEmpty(com.android.internal.R.styleable.PreferenceFragment_divider)) { 197 a.getDrawable(com.android.internal.R.styleable.PreferenceFragment_divider));
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
ListMenuItemView.java | 65 attrs, com.android.internal.R.styleable.MenuView, defStyleAttr, defStyleRes); 67 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground); 68 mTextAppearance = a.getResourceId(com.android.internal.R.styleable. 71 com.android.internal.R.styleable.MenuView_preserveIconSpacing, false); 73 mSubMenuArrow = a.getDrawable(com.android.internal.R.styleable.MenuView_subMenuArrow);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyButtonView.java | 93 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.KeyButtonView, 96 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0); 98 mSupportsLongpress = a.getBoolean(R.styleable.KeyButtonView_keyRepeat, true); 99 mPlaySounds = a.getBoolean(R.styleable.KeyButtonView_playSound, true); 102 if (a.getValue(R.styleable.KeyButtonView_android_contentDescription, value)) {
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
SlideKitkat.java | 147 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbSlide); 148 int edge = a.getInt(R.styleable.lbSlide_lb_slideEdge, Gravity.BOTTOM); 150 long duration = a.getInt(R.styleable.lbSlide_android_duration, -1); 154 long startDelay = a.getInt(R.styleable.lbSlide_android_startDelay, -1); 158 final int resID = a.getResourceId(R.styleable.lbSlide_android_interpolator, 0);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
SearchOrbView.java | 184 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbSearchOrbView, 187 Drawable img = a.getDrawable(R.styleable.lbSearchOrbView_searchOrbIcon); 194 int color = a.getColor(R.styleable.lbSearchOrbView_searchOrbColor, defColor); 196 R.styleable.lbSearchOrbView_searchOrbBrightColor, color); 197 int iconColor = a.getColor(R.styleable.lbSearchOrbView_searchOrbIconColor, Color.TRANSPARENT);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ActionBarContainer.java | 67 R.styleable.ActionBar); 68 mBackground = a.getDrawable(R.styleable.ActionBar_background); 70 R.styleable.ActionBar_backgroundStacked); 71 mHeight = a.getDimensionPixelSize(R.styleable.ActionBar_height, -1); 75 mSplitBackground = a.getDrawable(R.styleable.ActionBar_backgroundSplit);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherProvider.java | [all...] |