12 - JSON Parsing, Creating a URLConnection - Android Studio

In this tutorial we will design our xml using a button and textview and we will try to parse a very simple (one object json) response. For that we will create an HttpUrlConnection to connect to server and BufferedReader to read the stream we have received. Url to get a single object Json response - After that we will run our application and will check if we have parsed the json successfully. We get a NetworkOnMainThreadException if try to make a
Back to Top