Android:列表适配器内的Linkify仅适用于第一项

时间:2016-08-02 18:21:11

标签: android listadapter linkify autolink

我有这个恼人的问题。

我有一个包含TextView的列表适配器。

在我的TextView中,文本被定义为使用XML链接到手机。 它适用于列表的第一项,但不适用于其他项目。

有什么想法吗?

这是我的XML片段:

            <TextView
                android:id="@+id/phone"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="@color/phone"
                android:layout_gravity="right"
                android:gravity="right"
                android:clickable="false"
                android:autoLink="phone"
                android:textSize="@dimen/feed_item_phone" />

getView代码段:

        TextView phone = (TextView) convertView.findViewById(R.id.phone);
        phone.setText(item.getPhone());

谢谢!

0 个答案:

没有答案