我是Android的新手,我看过其他人没有明确回答的类似问题,因为我认为我的问题有点不同。
我在我的程序中使用TextView,其中可以有链接,文本,数字等,以下是我使用的TextView。
<TextView
android:id="@+id/viewText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="5dp"
android:autoLink="web"
android:linksClickable="false"
android:ellipsize="end"
android:maxLines="7" />
虽然这适用于普通文本,但只要TextView中存在链接,ellipsize就不起作用。我正在使用&#34; autoLink&#34;为了向用户显示它是链接但已将android:linksClickable
设置为false
。现在,我已经从代码中添加了ellipsize,但我想知道我是否可以从XML文件中做到这一点。
谢谢。