Searched defs:textAlignment (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSubtitleView.java207 public void setAlignment(Alignment textAlignment) { argument
208 if (mAlignment != textAlignment) {
209 mAlignment = textAlignment;
/frameworks/base/core/java/android/widget/
H A DSpinner.java1062 public void show(int textDirection, int textAlignment); argument
1118 public void show(int textDirection, int textAlignment) { argument
1130 listView.setTextAlignment(textAlignment);
1248 public void show(int textDirection, int textAlignment) { argument
1258 listView.setTextAlignment(textAlignment);
/frameworks/base/core/java/android/view/
H A DView.java2684 * Array of text direction flags for mapping attribute "textAlignment" to correct
5071 final int textAlignment = a.getInt(attr, TEXT_ALIGNMENT_DEFAULT);
5072 mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_FLAGS[textAlignment];
23970 * @param textAlignment The text alignment to set. Should be one of
23986 public void setTextAlignment(@TextAlignment int textAlignment) { argument
23987 if (textAlignment != getRawTextAlignment()) {
23993 ((textAlignment << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT) & PFLAG2_TEXT_ALIGNMENT_MASK);
24046 final int textAlignment = getRawTextAlignment();
24047 switch (textAlignment) {
24104 mPrivateFlags2 |= (textAlignment << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIF
[all...]

Completed in 118 milliseconds