我有一个接收字符串的活动。然后使用该字符串填充TextView。我需要文本来填充整个TextView,它被设置为固定大小。根据输入的文本数量,文本应调整为最大大小,使文本在TextView中仍然可见。
答案 0 :(得分:1)
在layout
:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
答案 1 :(得分:0)
这可能有助于你
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="5dp"
android:text="@string/general_info_height"
android:textColor="@android:color/black"
android:textStyle="bold" />