나는 그것이 쉽게 들린다는 것을 안다. 텍스트를 가운데에 배치해야하지만 텍스트가 너무 길면 아래로 가야하지만 여전히 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>
공간이 필요하기 때문에 paddingTop과 Bottom을 넣습니다. 추신 : 내 코드가 더 큽니다. RelativeLayout에 있습니다.
여기서 당신은 어떤 텍스트 스타일도 사용하지 않았습니다
—
Dinith