Lets implement here a HTTPClient utilizing native Android programming.
Here we are dealing with two common issues developpers may face:
- NetworkOnMainThreadException
- CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views
A very simple code is presented as an alternative to perform such request.
0:00 NetworkOnMainThread
0:54 CalledFromWrongThreadException
1:48 Solution with Threads and .runOnUiThread
Download
0 formats
No download links available.
runOnUiThread:Simpliest solution to NetworkOnMainThreadException and CalledFromWrongThreadException | NatokHD