Searched defs:style (Results 1 - 25 of 133) sorted by path

123456

/frameworks/base/core/java/android/app/
H A DDialogFragment.java170 private static final String SAVED_STYLE = "android:style";
198 * @param style Selects a standard style: may be {@link #STYLE_NORMAL},
202 * on the style) will be selected for you.
204 public void setStyle(int style, int theme) { argument
205 mStyle = style;
207 mTheme = com.android.internal.R.style.Theme_DeviceDefault_Dialog_NoFrame;
H A DNotification.java60 import android.text.style.AbsoluteSizeSpan;
61 import android.text.style.BackgroundColorSpan;
62 import android.text.style.CharacterStyle;
63 import android.text.style.ForegroundColorSpan;
64 import android.text.style.RelativeSizeSpan;
65 import android.text.style.TextAppearanceSpan;
2812 Log.d(TAG, "Unknown style class: " + templateClass);
2818 final Style style = ctor.newInstance();
2819 style.restoreFromExtras(mN.extras);
2821 if (style !
3682 setStyle(Style style) argument
[all...]
H A DProgressDialog.java29 import android.text.style.StyleSpan;
425 * <p><strong>Note:</strong> A ProgressDialog with style {@link #STYLE_SPINNER}
466 * Sets the style of this ProgressDialog, either {@link #STYLE_SPINNER} or
469 * <p><strong>Note:</strong> A ProgressDialog with style {@link #STYLE_SPINNER}
473 * @param style the style of this ProgressDialog, either {@link #STYLE_SPINNER} or
476 public void setProgressStyle(int style) { argument
477 mProgressStyle = style;
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1327 * Note that the text may also contain style spans that modify the color of specific
1338 * Note that the text may also contain style spans that modify the color of specific
1351 * Note that the text may also contain style spans that modify the size of specific
1362 * If {@link #getText()} is non-null, this is the main text style associated
1366 * Note that the text may also contain style spans that modify the style of specific
1608 public void setTextStyle(float size, int fgColor, int bgColor, int style) { argument
1613 t.mTextStyle = style;
1995 Log.i(TAG, prefix + " Text size: " + node.getTextSize() + " , style: #"
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java21 import android.text.style.*;
84 int[] style = nativeGetStyle(mNative, idx);
86 if (localLOGV) Log.v(TAG, "Got styles: " + Arrays.toString(style));
87 if (style != null) {
92 // the style array is a flat array of <type, start, end> hence
94 for (int styleIndex = 0; styleIndex < style.length; styleIndex += 3) {
95 int styleId = style[styleIndex];
103 // id already found skip to next style
134 res = applyStyles(str, style, mStyleIDs);
166 private CharSequence applyStyles(String str, int[] style, StyleID argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureLibrary.java43 public void setOrientationStyle(int style) { argument
44 mStore.setOrientationStyle(style);
H A DGestureStore.java97 * @param style
99 public void setOrientationStyle(int style) { argument
100 mOrientationStyle = style;
/frameworks/base/core/java/android/service/autofill/
H A DSaveInfo.java365 * Sets the style and listener for the negative save action.
367 * <p>This allows a fill-provider to customize the style and be
369 * UI. Note that selecting the negative action regardless of its style
372 * started. The default style is {@link #NEGATIVE_BUTTON_STYLE_CANCEL}</p>
374 * @param style The action style.
381 * @throws IllegalArgumentException If the style is invalid
383 public @NonNull Builder setNegativeAction(@NegativeButtonStyle int style, argument
386 if (style != NEGATIVE_BUTTON_STYLE_CANCEL
387 && style !
[all...]
/frameworks/base/core/java/android/text/style/
H A DAbsoluteSizeSpan.java17 package android.text.style;
H A DAccessibilityClickableSpan.java16 package android.text.style;
H A DAccessibilityURLSpan.java16 package android.text.style;
H A DAlignmentSpan.java17 package android.text.style;
H A DBackgroundColorSpan.java17 package android.text.style;
H A DBulletSpan.java17 package android.text.style;
95 Paint.Style style = p.getStyle();
124 p.setStyle(style);
H A DCharacterStyle.java17 package android.text.style;
H A DClickableSpan.java17 package android.text.style;
H A DDrawableMarginSpan.java17 package android.text.style;
H A DDynamicDrawableSpan.java17 package android.text.style;
H A DEasyEditSpan.java17 package android.text.style;
44 "android.text.style.EXTRA_TEXT_CHANGED_TYPE";
H A DForegroundColorSpan.java17 package android.text.style;
H A DIconMarginSpan.java17 package android.text.style;
H A DImageSpan.java17 package android.text.style;
H A DLeadingMarginSpan.java17 package android.text.style;
27 * A paragraph style affecting the leading margin. There can be multiple leading
H A DLineBackgroundSpan.java17 package android.text.style;
H A DLineHeightSpan.java17 package android.text.style;

Completed in 245 milliseconds

123456