Android ExpandableListView表示链接不展开

Android ExpandableListView表示链接不展开,android,android-widget,expandablelistview,Android,Android Widget,Expandablelistview,我有一个可扩展的ListView包含一个链接,当有链接时它不会扩展,我希望链接是可单击的 代码如下: <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:groupInd

我有一个可扩展的ListView包含一个链接,当有链接时它不会扩展,我希望链接是可单击的

代码如下:

<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" /> 

以及:



不能同时单击链接和列表项。它是一个或另一个。

不能同时单击链接和列表项。这是其中之一。

在代码中包含ExpandableListView部分可能会有所帮助。您显示的只是一个文本视图。在代码中包含ExpandableListView部分可能会有所帮助。您显示的只是一个文本视图。
<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"  />