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

/frameworks/base/core/tests/coretests/src/android/widget/
H A DEditorCursorTest.java193 final Integer textDirection, final Integer selection) throws Throwable {
195 if (textDirection != null) mEditText.setTextDirection(textDirection);
214 private void setEditTextHint(final String hint, final int textDirection, final int selection) argument
216 setEditTextProperties(null, hint, textDirection, selection);
192 setEditTextProperties(final String text, final String hint, final Integer textDirection, final Integer selection) argument
/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
1129 listView.setTextDirection(textDirection);
1248 public void show(int textDirection, int textAlignment) { argument
1257 listView.setTextDirection(textDirection);
/frameworks/base/core/java/android/view/
H A DView.java2620 * Array of text direction flags for mapping attribute "textDirection" to correct
5304 final int textDirection = a.getInt(attr, -1);
5305 if (textDirection != -1) {
5306 mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_FLAGS[textDirection];
24848 * @param textDirection the direction to set. Should be one of:
24865 public void setTextDirection(int textDirection) { argument
24866 if (getRawTextDirection() != textDirection) {
24871 mPrivateFlags2 |= ((textDirection << PFLAG2_TEXT_DIRECTION_MASK_SHIFT) & PFLAG2_TEXT_DIRECTION_MASK);
24924 final int textDirection = getRawTextDirection();
24925 switch(textDirection) {
[all...]

Completed in 130 milliseconds