How do I center the text horizontally and vertically in a TextView in android, so that it appears exactly in the middle of the screen?
|
feedback
|
|
I'm assuming you're using XML layout.
| |||||||||||||||||||
feedback
|
will do the trick | ||||
|
feedback
|
|
You can also set it up dynamically using:
| |||||||
feedback
|
This works when used with a RelativeLayout where the layout's height & width are set to wrap_content. | ||||
|
feedback
|
|
If you are using TableLayout make sure to set the gravity of the TableRows to center, too. Otherwise it will not work. At least it didn't work with me until i set the gravity of the TableRow to center. For Example like this:
| |||
|
feedback
|
|
You can set textview in horizontaly and vartically using below method. add one layout set the layout gravity horizontal and vertical and add the textview in that layout so you have textview in center horizontal and vartical | |||
|
feedback
|
and
| |||
|
feedback
|