1

Can i right align the application name in android and xamarin

by default the application name is aligned in the left side.

so how to make it aligned it right

valdetero
  • 4,624
  • 1
  • 31
  • 46

1 Answers1

1

You will have to do it programmatically. Look the answer of this similar question

The only difference is that you will have to set the gravity of the Textview to the right:

 modelTitle.Gravity = GravityFlags.Right;
Community
  • 1
  • 1
Stam
  • 2,410
  • 6
  • 32
  • 58