ExpandableListView centers the link does not expand

I have an ExpandableListView that contains a link, it does not expand when there is a link, and I want the link to be clicked.

The code is as follows:

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

and

 <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" /> 
+1
source share
1 answer

You cannot have a link and a list item available at the same time. It is one or the other.

+1
source

Source: https://habr.com/ru/post/1483463/


All Articles