Possible Duplicate:
How do I center text horizontally and vertical in a TextView in Android?
I want to set the text in the center of textview (vertical and horizontal) . it is horizontally centered by vertical it has more space in the top of the text.
xml layout :
<TextView
android:id="@+id/txtQuantity"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center|center_vertical"
android:text="+"
android:textColor="@color/white"
android:textSize="25sp" />
</LinearLayout>