这是我的代码:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="120dp"
android:orientation="vertical"
android:layout_weight="3"
android:weightSum="4">
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="P" />
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2"
android:text="Bryant" />
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="27" />
</LinearLayout>
当外部布局的高度为120dp 时,文本无法显示整个单词(例如'y' 只显示上部),我认为是因为文本大小太大。
但是,当我设置为 150dp 时,文本可以显示整个单词。
是否有任何方法来设置文本的文本大小自动适应文本视图以显示整个单词。
我不想将 textsize 硬编码为 12sp。
而且,我只想在 xml 中做。
谢谢。