最佳答案
我知道这听起来很简单。我需要将文本放在中间,但是当文本太长时,它需要放在下面,但是仍然要在 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>
我在上面和下面加了填充物,因为我需要一些空间。 PS: 我的代码比较大,在 RelativeLayout 中。