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.java2646 * Array of text direction flags for mapping attribute "textAlignment" to correct
5033 final int textAlignment = a.getInt(attr, TEXT_ALIGNMENT_DEFAULT);
5034 mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_FLAGS[textAlignment];
23897 * @param textAlignment The text alignment to set. Should be one of
23913 public void setTextAlignment(@TextAlignment int textAlignment) { argument
23914 if (textAlignment != getRawTextAlignment()) {
23920 ((textAlignment << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT) & PFLAG2_TEXT_ALIGNMENT_MASK);
23973 final int textAlignment = getRawTextAlignment();
23974 switch (textAlignment) {
24031 mPrivateFlags2 |= (textAlignment << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIF
[all...]

Completed in 100 milliseconds