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
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
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;