Reputation: 83
How to align text in TextView when it is match_constraint.
I tried android:layout_gravity="right"
and
android:gravity="right"
but none of these works.
is there a way to achieve horizontal aligment of text in match_constraint?
Seems like a simple task but im looking for a solution for a days....
Upvotes: 0
Views: 77
Reputation: 2600
android:gravity="right"
This will work to align text in your textview. if its not working there is some other issue with your code. Post your code if you need more help
Upvotes: 1