मुझे पता है कि यह आसान लगता है। मुझे एक पाठ को केंद्र में रखने की आवश्यकता है, लेकिन जब पाठ बहुत लंबा हो जाता है तो उसे नीचे जाने की आवश्यकता होती है, लेकिन फिर भी मेरे xml के केंद्र में संरेखित होता है।
यहाँ मेरा कोड है:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/showdescriptioncontenttitle"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:layout_centerHorizontal="true"
>
<TextView
android:id="@+id/showdescriptiontitle"
android:text="Title"
android:textSize="35dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
मैंने पेडिंगटॉप और बॉटम लगाया क्योंकि मुझे कुछ जगह चाहिए। पुनश्च: मेरा कोड बड़ा है; यह एक RelativeLayout में है।