以固定大小TextView显示字符串

时间:2012-08-31 11:00:03

标签: android textview

我有固定宽度和高度的TextView,并希望设置字符串"._MealTracker_2-MAR-2012_02-20PM.apk",但在textview中只显示"."无法获取它。为什么会这样?

      <TextView
                    android:id="@+id/TextView01"
                    android:layout_width="60dp"
                    android:layout_height="20dp"
                    android:layout_gravity="bottom|center_horizontal"
                    android:layout_marginBottom="@dimen/bottom_margin"
                    android:text="._MealTracker_2-MAR-2012_02-20PM.apk"
                    android:textColor="@color/bgblue" />

3 个答案:

答案 0 :(得分:2)

它没有正确显示,因为没有设置android:singleLine属性所以它考虑多行。因此,您的文字设置为垂直。

如果设置android:singleLine="true",那么 ._ MealT ... 会显示在textView中。

enter image description here

答案 1 :(得分:1)

设置文字属性

android:singleLine="true"

答案 2 :(得分:1)

我尝试在我的textView中编写你的字符串,它对我有用.. 所以也许这是textView间距的问题,因为你的字符串很长,只能在一行打印。