如何在android中的Textview中设置MaxLine 1.5

时间:2016-01-19 06:24:31

标签: java android

是否可以在android:maxLines中将TextView属性设置为1.5?

<TextView
    android:id="@+id/txtDescription"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/txtTitle"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:maxLines="2"
    android:textSize="12sp"
    android:ellipsize="end"
    android:text="Description"
    android:textColor="#4d4d4d"/>

2 个答案:

答案 0 :(得分:0)

根据developer.google不可能,因为maxlines只接受整数作为输入,您可以按照提供的链接

http://developer.android.com/reference/android/widget/TextView.html#attr_android:maxLines

答案 1 :(得分:0)

你不能给予

android:maxLines="1.5"

它表示在xml

中验证资源引用

它应该是一个整数值。

阅读android:maxLines文档。

  

使TextView最多只有这么多行。当用在   可编辑文本,inputType属性的值必须与   要应用的maxLines属性的textMultiLine标志。

     

必须是整数值,例如&#34; 100&#34;。