runOnUiThread:Simpliest solution to NetworkOnMainThreadException and CalledFromWrongThreadException

Опубликовано: 11 Октябрь 2024
на канале: Rafael Queiroz
981
1

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