我使用以下RoboTextView
xml声明:
<com.package.utils.RobotoTextView
android:id="@+id/ttli_small_desc"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginRight="6dp"
android:textSize="12dp"
android:paddingBottom="6dp"
android:maxLines="5"
android:ellipsize="end"
android:textColor="@color/selectable_text_black_to_white"
bit:fontType="light"/>
这是一个自定义视图对象,但我已使用标准TextView
对其进行了测试,并出现同样的问题。这个自定义视图唯一能做的就是允许我使用RobotoLight字体。现在技术有点过时,但它在那里,所以我使用它。
无论如何,我期望的最多5行应该是这样的
word words words
words words words
word word words
words word
words words words...
但这是我得到的:
基本上它会对文本进行椭圆化处理,但之后只需选择正确的文本。我已尝试使用singleLine=false
和其他随机属性尝试解决此问题,但到目前为止,我已经被淘汰了。有谁知道如何解决这个问题?
谢谢!