Searched defs:textDirection (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/core/tests/coretests/src/android/widget/
H A DEditorCursorTest.java196 final Integer textDirection, final Integer selection) {
200 if (textDirection != null) mEditText.setTextDirection(textDirection);
225 private void setEditTextHint(final String hint, final int textDirection, final int selection) { argument
226 setEditTextProperties(null, hint, textDirection, selection);
195 setEditTextProperties(final String text, final String hint, final Integer textDirection, final Integer selection) argument
/frameworks/base/core/java/android/view/
H A DView.java2516 * Array of text direction flags for mapping attribute "textDirection" to correct
5024 final int textDirection = a.getInt(attr, -1);
5025 if (textDirection != -1) {
5026 mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_FLAGS[textDirection];
23660 * @param textDirection the direction to set. Should be one of:
23677 public void setTextDirection(int textDirection) { argument
23678 if (getRawTextDirection() != textDirection) {
23683 mPrivateFlags2 |= ((textDirection << PFLAG2_TEXT_DIRECTION_MASK_SHIFT) & PFLAG2_TEXT_DIRECTION_MASK);
23736 final int textDirection = getRawTextDirection();
23737 switch(textDirection) {
[all...]
/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);

Completed in 104 milliseconds