HomeSort by relevance Sort by last modified time
    Searched refs:styleable (Results 176 - 200 of 583) sorted by null

1 2 3 4 5 6 78 91011>>

  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
FixedAspectSurfaceView.java 51 R.styleable.FixedAspectSurfaceView, 0, 0);
53 R.styleable.FixedAspectSurfaceView_aspectRatio, 1.f));
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 33 * @attr ref android.R.styleable#ViewAnimator_inAnimation
34 * @attr ref android.R.styleable#ViewAnimator_outAnimation
35 * @attr ref android.R.styleable#ViewAnimator_animateFirstView
55 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.ViewAnimator);
56 int resource = a.getResourceId(com.android.internal.R.styleable.ViewAnimator_inAnimation, 0);
61 resource = a.getResourceId(com.android.internal.R.styleable.ViewAnimator_outAnimation, 0);
66 boolean flag = a.getBoolean(com.android.internal.R.styleable.ViewAnimator_animateFirstView, true);
88 com.android.internal.R.styleable.FrameLayout);
90 com.android.internal.R.styleable.FrameLayout_measureAllChildren, true);
CompoundButton.java 48 * See {@link android.R.styleable#CompoundButton
49 * CompoundButton Attributes}, {@link android.R.styleable#Button Button
50 * Attributes}, {@link android.R.styleable#TextView TextView Attributes}, {@link
51 * android.R.styleable#View View Attributes}
87 attrs, com.android.internal.R.styleable.CompoundButton, defStyleAttr, defStyleRes);
89 final Drawable d = a.getDrawable(com.android.internal.R.styleable.CompoundButton_button);
94 if (a.hasValue(R.styleable.CompoundButton_buttonTintMode)) {
96 R.styleable.CompoundButton_buttonTintMode, -1), mButtonTintMode);
100 if (a.hasValue(R.styleable.CompoundButton_buttonTint)) {
101 mButtonTintList = a.getColorStateList(R.styleable.CompoundButton_buttonTint)
    [all...]
Switch.java 71 * @attr ref android.R.styleable#Switch_textOn
72 * @attr ref android.R.styleable#Switch_textOff
73 * @attr ref android.R.styleable#Switch_switchMinWidth
74 * @attr ref android.R.styleable#Switch_switchPadding
75 * @attr ref android.R.styleable#Switch_switchTextAppearance
76 * @attr ref android.R.styleable#Switch_thumb
77 * @attr ref android.R.styleable#Switch_thumbTextPadding
78 * @attr ref android.R.styleable#Switch_track
226 attrs, com.android.internal.R.styleable.Switch, defStyleAttr, defStyleRes);
227 mThumbDrawable = a.getDrawable(com.android.internal.R.styleable.Switch_thumb)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/content/res/
AppCompatColorStateListInflater.java 113 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ColorStateListItem);
114 final int baseColor = a.getColor(R.styleable.ColorStateListItem_android_color,
118 if (a.hasValue(R.styleable.ColorStateListItem_android_alpha)) {
119 alphaMod = a.getFloat(R.styleable.ColorStateListItem_android_alpha, alphaMod);
120 } else if (a.hasValue(R.styleable.ColorStateListItem_alpha)) {
121 alphaMod = a.getFloat(R.styleable.ColorStateListItem_alpha, alphaMod);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
CircleView.java 93 attrs, R.styleable.CircleView, defStyleAttr, 0 /* defStyleRes */);
95 mGravity = a.getInt(R.styleable.CircleView_android_gravity, Gravity.NO_GRAVITY);
96 mCenterX = a.getDimension(R.styleable.CircleView_centerX, 0.0f);
97 mCenterY = a.getDimension(R.styleable.CircleView_centerY, 0.0f);
98 mRadius = a.getDimension(R.styleable.CircleView_radius, 0.0f);
100 mCirclePaint.setColor(a.getColor(R.styleable.CircleView_fillColor, Color.WHITE));
153 * @see R.styleable#CircleView_android_gravity
178 * @see R.styleable#CircleView_fillColor
202 * @see R.styleable#CircleView_centerX
232 * @see R.styleable#CircleView_center
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 186 R.styleable.AlertDialog, R.attr.alertDialogStyle, 0);
189 R.styleable.AlertDialog_layout, R.layout.alert_dialog);
191 R.styleable.AlertDialog_buttonPanelSideLayout, 0);
193 R.styleable.AlertDialog_listLayout, R.layout.select_dialog);
196 R.styleable.AlertDialog_multiChoiceItemLayout,
199 R.styleable.AlertDialog_singleChoiceItemLayout,
202 R.styleable.AlertDialog_listItemLayout,
204 mShowTitle = a.getBoolean(R.styleable.AlertDialog_showTitle, true);
560 null, R.styleable.AlertDialog, R.attr.alertDialogStyle, 0);
773 R.styleable.AlertDialog_needsDefaultBackgrounds, true)
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityServiceInfo.java 61 * @attr ref android.R.styleable#AccessibilityService_accessibilityEventTypes
62 * @attr ref android.R.styleable#AccessibilityService_accessibilityFeedbackType
63 * @attr ref android.R.styleable#AccessibilityService_accessibilityFlags
64 * @attr ref android.R.styleable#AccessibilityService_canRequestEnhancedWebAccessibility
65 * @attr ref android.R.styleable#AccessibilityService_canRequestFilterKeyEvents
66 * @attr ref android.R.styleable#AccessibilityService_canRequestTouchExplorationMode
67 * @attr ref android.R.styleable#AccessibilityService_canRetrieveWindowContent
68 * @attr ref android.R.styleable#AccessibilityService_description
69 * @attr ref android.R.styleable#AccessibilityService_notificationTimeout
70 * @attr ref android.R.styleable#AccessibilityService_packageName
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ToolbarWidgetWrapper.java 103 R.styleable.ActionBar, R.attr.actionBarStyle, 0);
104 mDefaultNavigationIcon = a.getDrawable(R.styleable.ActionBar_homeAsUpIndicator);
106 final CharSequence title = a.getText(R.styleable.ActionBar_title);
111 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle);
116 final Drawable logo = a.getDrawable(R.styleable.ActionBar_logo);
121 final Drawable icon = a.getDrawable(R.styleable.ActionBar_icon);
128 setDisplayOptions(a.getInt(R.styleable.ActionBar_displayOptions, 0));
131 R.styleable.ActionBar_customNavigationLayout, 0);
138 final int height = a.getLayoutDimension(R.styleable.ActionBar_height, 0);
146 R.styleable.ActionBar_contentInsetStart, -1)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ToolbarWidgetWrapper.java 103 null, R.styleable.ActionBar, R.attr.actionBarStyle, 0);
104 mDefaultNavigationIcon = a.getDrawable(R.styleable.ActionBar_homeAsUpIndicator);
106 final CharSequence title = a.getText(R.styleable.ActionBar_title);
111 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle);
116 final Drawable logo = a.getDrawable(R.styleable.ActionBar_logo);
121 final Drawable icon = a.getDrawable(R.styleable.ActionBar_icon);
128 setDisplayOptions(a.getInt(R.styleable.ActionBar_displayOptions, 0));
131 R.styleable.ActionBar_customNavigationLayout, 0);
138 final int height = a.getLayoutDimension(R.styleable.ActionBar_height, 0);
146 R.styleable.ActionBar_contentInsetStart, -1)
    [all...]
SwitchCompat.java 74 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_android_textOn
75 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_android_textOff
76 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_switchMinWidth
77 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_switchPadding
78 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_switchTextAppearance
79 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_android_thumb
80 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_thumbTextPadding
81 * @attr ref android.support.v7.appcompat.R.styleable#SwitchCompat_track
213 attrs, R.styleable.SwitchCompat, defStyleAttr, 0);
214 mThumbDrawable = a.getDrawable(R.styleable.SwitchCompat_android_thumb)
    [all...]
  /frameworks/base/core/java/android/preference/
DialogPreference.java 46 * @attr ref android.R.styleable#DialogPreference_dialogTitle
47 * @attr ref android.R.styleable#DialogPreference_dialogMessage
48 * @attr ref android.R.styleable#DialogPreference_dialogIcon
49 * @attr ref android.R.styleable#DialogPreference_dialogLayout
50 * @attr ref android.R.styleable#DialogPreference_positiveButtonText
51 * @attr ref android.R.styleable#DialogPreference_negativeButtonText
76 com.android.internal.R.styleable.DialogPreference, defStyleAttr, defStyleRes);
77 mDialogTitle = a.getString(com.android.internal.R.styleable.DialogPreference_dialogTitle);
83 mDialogMessage = a.getString(com.android.internal.R.styleable.DialogPreference_dialogMessage);
84 mDialogIcon = a.getDrawable(com.android.internal.R.styleable.DialogPreference_dialogIcon)
    [all...]
ListPreference.java 36 * @attr ref android.R.styleable#ListPreference_entries
37 * @attr ref android.R.styleable#ListPreference_entryValues
51 attrs, com.android.internal.R.styleable.ListPreference, defStyleAttr, defStyleRes);
52 mEntries = a.getTextArray(com.android.internal.R.styleable.ListPreference_entries);
53 mEntryValues = a.getTextArray(com.android.internal.R.styleable.ListPreference_entryValues);
60 com.android.internal.R.styleable.Preference, defStyleAttr, defStyleRes);
61 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
MultiCheckPreference.java 35 * @attr ref android.R.styleable#ListPreference_entries
36 * @attr ref android.R.styleable#ListPreference_entryValues
50 attrs, com.android.internal.R.styleable.ListPreference, defStyleAttr, defStyleRes);
51 mEntries = a.getTextArray(com.android.internal.R.styleable.ListPreference_entries);
56 com.android.internal.R.styleable.ListPreference_entryValues));
63 com.android.internal.R.styleable.Preference, 0, 0);
64 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
  /packages/apps/Settings/src/com/android/settings/display/
ConversationMessageView.java 70 R.styleable.ConversationMessageView);
72 mIncoming = a.getBoolean(R.styleable.ConversationMessageView_incoming, true);
73 mMessageText = a.getString(R.styleable.ConversationMessageView_messageText);
74 mTimestampText = a.getString(R.styleable.ConversationMessageView_timestampText);
75 mIconText = a.getString(R.styleable.ConversationMessageView_iconText);
76 mIconTextColor = a.getColor(R.styleable.ConversationMessageView_iconTextColor, 0);
77 mIconBackgroundColor = a.getColor(R.styleable.ConversationMessageView_iconBackgroundColor,
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 42 * @attr ref android.R.styleable#GestureOverlayView_eventsInterceptionEnabled
43 * @attr ref android.R.styleable#GestureOverlayView_fadeDuration
44 * @attr ref android.R.styleable#GestureOverlayView_fadeOffset
45 * @attr ref android.R.styleable#GestureOverlayView_fadeEnabled
46 * @attr ref android.R.styleable#GestureOverlayView_gestureStrokeWidth
47 * @attr ref android.R.styleable#GestureOverlayView_gestureStrokeAngleThreshold
48 * @attr ref android.R.styleable#GestureOverlayView_gestureStrokeLengthThreshold
49 * @attr ref android.R.styleable#GestureOverlayView_gestureStrokeSquarenessThreshold
50 * @attr ref android.R.styleable#GestureOverlayView_gestureStrokeType
51 * @attr ref android.R.styleable#GestureOverlayView_gestureColo
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 49 * @attr ref R.styleable#KeyboardView_keyBackground
50 * @attr ref R.styleable#KeyboardView_functionalKeyBackground
51 * @attr ref R.styleable#KeyboardView_spacebarBackground
52 * @attr ref R.styleable#KeyboardView_spacebarIconWidthRatio
53 * @attr ref R.styleable#Keyboard_Key_keyLabelFlags
54 * @attr ref R.styleable#KeyboardView_keyHintLetterPadding
55 * @attr ref R.styleable#KeyboardView_keyPopupHintLetter
56 * @attr ref R.styleable#KeyboardView_keyPopupHintLetterPadding
57 * @attr ref R.styleable#KeyboardView_keyShiftedLetterHintPadding
58 * @attr ref R.styleable#KeyboardView_keyTextShadowRadiu
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 85 R.styleable.SuwSetupWizardLayout, defStyleAttr, 0);
89 a.getDrawable(R.styleable.SuwSetupWizardLayout_suwBackground);
94 a.getDrawable(R.styleable.SuwSetupWizardLayout_suwBackgroundTile);
102 a.getDrawable(R.styleable.SuwSetupWizardLayout_suwIllustration);
107 a.getDrawable(R.styleable.SuwSetupWizardLayout_suwIllustrationImage);
109 R.styleable.SuwSetupWizardLayout_suwIllustrationHorizontalTile);
117 R.styleable.SuwSetupWizardLayout_suwDecorPaddingTop, -1);
127 R.styleable.SuwSetupWizardLayout_suwIllustrationAspectRatio, -1f);
137 a.getText(R.styleable.SuwSetupWizardLayout_suwHeaderText);
GlifLayout.java 91 R.styleable.SuwGlifLayout, defStyleAttr, 0);
93 final Drawable icon = a.getDrawable(R.styleable.SuwGlifLayout_android_icon);
100 a.getColorStateList(R.styleable.SuwGlifLayout_suwHeaderColor);
108 a.getText(R.styleable.SuwGlifLayout_suwHeaderText);
114 a.getColorStateList(R.styleable.SuwGlifLayout_android_colorPrimary);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseGridView.java 218 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbBaseGridView);
219 boolean throughFront = a.getBoolean(R.styleable.lbBaseGridView_focusOutFront, false);
220 boolean throughEnd = a.getBoolean(R.styleable.lbBaseGridView_focusOutEnd, false);
222 boolean throughSideStart = a.getBoolean(R.styleable.lbBaseGridView_focusOutSideStart, true);
223 boolean throughSideEnd = a.getBoolean(R.styleable.lbBaseGridView_focusOutSideEnd, true);
226 a.getDimensionPixelSize(R.styleable.lbBaseGridView_verticalMargin, 0));
228 a.getDimensionPixelSize(R.styleable.lbBaseGridView_horizontalMargin, 0));
229 if (a.hasValue(R.styleable.lbBaseGridView_android_gravity)) {
230 setGravity(a.getInt(R.styleable.lbBaseGridView_android_gravity, Gravity.NO_GRAVITY));
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 78 R.styleable.KeyConfigPreference, defStyle, 0);
79 mLeftPrefKey = a.getString(R.styleable.KeyConfigPreference_leftKey);
80 mRightPrefKey = a.getString(R.styleable.KeyConfigPreference_rightKey);
81 mJumpPrefKey = a.getString(R.styleable.KeyConfigPreference_jumpKey);
82 mAttackPrefKey = a.getString(R.styleable.KeyConfigPreference_attackKey);
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 117 com.android.internal.R.styleable.Wallpaper);
119 com.android.internal.R.styleable.Wallpaper_settingsActivity);
122 com.android.internal.R.styleable.Wallpaper_thumbnail,
125 com.android.internal.R.styleable.Wallpaper_author,
128 com.android.internal.R.styleable.Wallpaper_description,
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 47 * @attr ref android.R.styleable#GridLayoutAnimation_columnDelay
48 * @attr ref android.R.styleable#GridLayoutAnimation_rowDelay
49 * @attr ref android.R.styleable#GridLayoutAnimation_direction
50 * @attr ref android.R.styleable#GridLayoutAnimation_directionPriority
116 com.android.internal.R.styleable.GridLayoutAnimation);
119 a.peekValue(com.android.internal.R.styleable.GridLayoutAnimation_columnDelay));
122 a.peekValue(com.android.internal.R.styleable.GridLayoutAnimation_rowDelay));
125 mDirection = a.getInt(com.android.internal.R.styleable.GridLayoutAnimation_direction,
127 mDirectionPriority = a.getInt(com.android.internal.R.styleable.GridLayoutAnimation_directionPriority,
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 49 * @attr ref android.R.styleable#ClipDrawable_clipOrientation
50 * @attr ref android.R.styleable#ClipDrawable_gravity
51 * @attr ref android.R.styleable#ClipDrawable_drawable
89 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ClipDrawable);
109 final TypedArray a = t.resolveAttributes(state.mThemeAttrs, R.styleable.ClipDrawable);
124 || mState.mThemeAttrs[R.styleable.ClipDrawable_drawable] == 0)) {
144 R.styleable.ClipDrawable_clipOrientation, state.mOrientation);
146 R.styleable.ClipDrawable_gravity, state.mGravity);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
NumPadKey.java 81 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NumPadKey);
84 mDigit = a.getInt(R.styleable.NumPadKey_digit, mDigit);
85 mTextViewResId = a.getResourceId(R.styleable.NumPadKey_textView, 0);
120 a = context.obtainStyledAttributes(attrs, android.R.styleable.View);
121 if (!a.hasValueOrEmpty(android.R.styleable.View_background)) {

Completed in 490 milliseconds

1 2 3 4 5 6 78 91011>>