1

我有一个 ExpandableListView 包含一个链接,当有一个链接时它不会展开,我希望该链接是可点击的。

像这样的代码:

<ExpandableListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:groupIndicator="@null" /> 

和:

<TextView android:layout_below="@id/screenName" android:layout_alignLeft="@id/screenName" android:layout_height="wrap_content" android:layout_width="fill_parent"   android:autoLink="web|email" android:linksClickable="true" android:id="@+id/text"  />
4

1 回答 1

1

您不能同时让链接可点击和列表项可点击。这是一个或另一个。

于 2010-01-28T06:18:18.357 回答