I have had this issue and sort of found a workaround after doing a weeklong research. Thought to share just in case someone else encounters it.
The issue happens on devices (as I've tested) with Android 2.3.3 and up.
I am using HttpUrlConnection to send and receive data. All seems to work nicely until I leave the device idle for 5-7 minutes. Then all the subsequent requests do send the data, but wait indefinitely for response. When I reset the WiFi connection I get the error
libcore.io.ErrnoException: recvfrom failed: ETIMEDOUT (Connection timed out)
for all waiting requests.
Then I am able to normally communicate with the server until after the next idle period.
Reading through the documentation of HttpUrlConnection class, I suspected that the reason could be the recycled Sockets.
I disabled recycling the Sockets by
System.setProperty("http.keepAlive", "false");
at the very beginning of the app execution. Which will tell the system to discard used sockets when the connection is closed and allocate new ones for new connections.
This seems to have solved the problem for me.
If anyone has had the same issue and have found a better solution without giving up socket recycling optimisation feature of the system, please do share a comment or a solution.
Hopefully, Google will provide a fix or a workaround in the future, if this happens to be a bug.
Thanks.