I have an issue with Documentation feature in Andr...
# announcements
d
I have an issue with Documentation feature in Android Studio (I believe it behaves similar in IDEA) when trying to get an assistance with some stdlib function that is an interface to a Java library. For example
mutableListOf<T>().subList(0, 0)
– when I'm calling Documentation on the method it shows me just a method's signature. Even after replacement of MutableList to ArrayList –
ArrayList<T>().subList(0, 0)
– I can't see relevant information. Is there a workaround for this?