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

/frameworks/base/core/java/com/android/internal/widget/
H A DSubtitleView.java206 public void setAlignment(Alignment textAlignment) { argument
207 if (mAlignment != textAlignment) {
208 mAlignment = textAlignment;
/frameworks/base/core/java/android/widget/
H A DSpinner.java1031 public void show(int textDirection, int textAlignment); argument
1087 public void show(int textDirection, int textAlignment) { argument
1099 listView.setTextAlignment(textAlignment);
1217 public void show(int textDirection, int textAlignment) { argument
1227 listView.setTextAlignment(textAlignment);
/frameworks/base/core/java/android/view/
H A DView.java2169 * Array of text direction flags for mapping attribute "textAlignment" to correct
4242 final int textAlignment = a.getInt(attr, TEXT_ALIGNMENT_DEFAULT);
4243 mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_FLAGS[textAlignment];
20521 * @param textAlignment The text alignment to set. Should be one of
20537 public void setTextAlignment(@TextAlignment int textAlignment) { argument
20538 if (textAlignment != getRawTextAlignment()) {
20544 ((textAlignment << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT) & PFLAG2_TEXT_ALIGNMENT_MASK);
20597 final int textAlignment = getRawTextAlignment();
20598 switch (textAlignment) {
20655 mPrivateFlags2 |= (textAlignment << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIF
[all...]

Completed in 117 milliseconds