Horizontally and Vertically center text for TextView in Android

How do I center the text horizontally and vertically for a TextView in Android? How do I center the alignment of a TextView?


In Linear Layouts use

android:layout_gravity="center"

In Relative Layouts

android:layout_centerInParent="true"

Above Code will center the textView in layout To center the text in TextView

android:textAlignment="center"
android:gravity="center"

add this property for textview in xml

textview<android:height="yourheight"
android:width="yourwidth"
android:gravity="center">

your width size should be less than the parent container's width size


It depends on how you have declared the height and width. If you used wrap_content, then the textview is just big enough in that direction to hold the text, so the gravity attribute will not apply. android:gravity affects the location of the text Within the space allocated for the textview. layout_xx attributes affect the location of the view within it's parent.

SO if you set the size of the textview, then use gravity to position the text within the textview area, if you used wrap_content, then use the layout_xx attributes to position the textview within it's parent

链接地址: http://www.djcxy.com/p/56302.html

上一篇: 对Minimax进行beta修剪

下一篇: Android中TextView的水平和垂直居中文本