我的文本中有很多跳行,但是却更大:
<string name="credits_big">
Credits
\n\n\n\n\n\n\n\n
Programmer
\n\n
Name
\n\n\n\n\n\n\n\n
Music
\n\n\n\n\n\n\n\n
Name
\n\n\n\n\n\n\n\n
Programmer
\n\n
Name
\n\n\n\n\n\n\n\n
Music
\n\n\n\n\n\n\n\n
Name
<\string>
我正在对文本进行动画处理,以模拟电影的片尾字幕,但有时会剪切文本。似乎TextView具有最大高度。我该怎么解决?
这是文本视图:
<TextView
android:id="@+id/creditsTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/credits_big"
android:textAlignment="center"
android:textColor="@color/font"
android:textSize="@dimen/medium_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent" />