|
623 | 623 | * @attr ref android.R.styleable#View_hapticFeedbackEnabled |
624 | 624 | * @attr ref android.R.styleable#View_keepScreenOn |
625 | 625 | * @attr ref android.R.styleable#View_layerType |
| 626 | + * @attr ref android.R.styleable#View_layoutDirection |
626 | 627 | * @attr ref android.R.styleable#View_longClickable |
627 | 628 | * @attr ref android.R.styleable#View_minHeight |
628 | 629 | * @attr ref android.R.styleable#View_minWidth |
|
660 | 661 | * @attr ref android.R.styleable#View_soundEffectsEnabled |
661 | 662 | * @attr ref android.R.styleable#View_tag |
662 | 663 | * @attr ref android.R.styleable#View_textAlignment |
| 664 | + * @attr ref android.R.styleable#View_textDirection |
663 | 665 | * @attr ref android.R.styleable#View_transformPivotX |
664 | 666 | * @attr ref android.R.styleable#View_transformPivotY |
665 | 667 | * @attr ref android.R.styleable#View_translationX |
@@ -5854,6 +5856,7 @@ public boolean isHapticFeedbackEnabled() { |
5854 | 5856 | * {@link #LAYOUT_DIRECTION_RTL}, |
5855 | 5857 | * {@link #LAYOUT_DIRECTION_INHERIT} or |
5856 | 5858 | * {@link #LAYOUT_DIRECTION_LOCALE}. |
| 5859 | + * |
5857 | 5860 | * @attr ref android.R.styleable#View_layoutDirection |
5858 | 5861 | * |
5859 | 5862 | * @hide |
@@ -5909,6 +5912,8 @@ public void setLayoutDirection(int layoutDirection) { |
5909 | 5912 | * |
5910 | 5913 | * For compatibility, this will return {@link #LAYOUT_DIRECTION_LTR} if API version |
5911 | 5914 | * is lower than {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR1}. |
| 5915 | + * |
| 5916 | + * @attr ref android.R.styleable#View_layoutDirection |
5912 | 5917 | */ |
5913 | 5918 | @ViewDebug.ExportedProperty(category = "layout", mapping = { |
5914 | 5919 | @ViewDebug.IntToString(from = LAYOUT_DIRECTION_LTR, to = "RESOLVED_DIRECTION_LTR"), |
@@ -16627,6 +16632,8 @@ protected float getHorizontalScrollFactor() { |
16627 | 16632 | * {@link #TEXT_DIRECTION_RTL}, |
16628 | 16633 | * {@link #TEXT_DIRECTION_LOCALE} |
16629 | 16634 | * |
| 16635 | + * @attr ref android.R.styleable#View_textDirection |
| 16636 | + * |
16630 | 16637 | * @hide |
16631 | 16638 | */ |
16632 | 16639 | @ViewDebug.ExportedProperty(category = "text", mapping = { |
@@ -16656,6 +16663,8 @@ public int getRawTextDirection() { |
16656 | 16663 | * Resolution will be done if the value is set to TEXT_DIRECTION_INHERIT. The resolution |
16657 | 16664 | * proceeds up the parent chain of the view to get the value. If there is no parent, then it will |
16658 | 16665 | * return the default {@link #TEXT_DIRECTION_FIRST_STRONG}. |
| 16666 | + * |
| 16667 | + * @attr ref android.R.styleable#View_textDirection |
16659 | 16668 | */ |
16660 | 16669 | public void setTextDirection(int textDirection) { |
16661 | 16670 | if (getRawTextDirection() != textDirection) { |
@@ -16684,6 +16693,8 @@ public void setTextDirection(int textDirection) { |
16684 | 16693 | * {@link #TEXT_DIRECTION_LTR}, |
16685 | 16694 | * {@link #TEXT_DIRECTION_RTL}, |
16686 | 16695 | * {@link #TEXT_DIRECTION_LOCALE} |
| 16696 | + * |
| 16697 | + * @attr ref android.R.styleable#View_textDirection |
16687 | 16698 | */ |
16688 | 16699 | public int getTextDirection() { |
16689 | 16700 | return (mPrivateFlags2 & PFLAG2_TEXT_DIRECTION_RESOLVED_MASK) >> PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT; |
@@ -16816,6 +16827,8 @@ private boolean isTextDirectionResolved() { |
16816 | 16827 | * {@link #TEXT_ALIGNMENT_VIEW_START}, |
16817 | 16828 | * {@link #TEXT_ALIGNMENT_VIEW_END} |
16818 | 16829 | * |
| 16830 | + * @attr ref android.R.styleable#View_textAlignment |
| 16831 | + * |
16819 | 16832 | * @hide |
16820 | 16833 | */ |
16821 | 16834 | @ViewDebug.ExportedProperty(category = "text", mapping = { |
@@ -16879,6 +16892,8 @@ public void setTextAlignment(int textAlignment) { |
16879 | 16892 | * {@link #TEXT_ALIGNMENT_TEXT_END}, |
16880 | 16893 | * {@link #TEXT_ALIGNMENT_VIEW_START}, |
16881 | 16894 | * {@link #TEXT_ALIGNMENT_VIEW_END} |
| 16895 | + * |
| 16896 | + * @attr ref android.R.styleable#View_textAlignment |
16882 | 16897 | */ |
16883 | 16898 | @ViewDebug.ExportedProperty(category = "text", mapping = { |
16884 | 16899 | @ViewDebug.IntToString(from = TEXT_ALIGNMENT_INHERIT, to = "INHERIT"), |
|
0 commit comments