Flo Rida
Flo Rida

Reputation: 83

How to align text in TextView when the TextView is match constraint?

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

Answers (1)

Suhaib Roomy
Suhaib Roomy

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

Related Questions