Posts

Showing posts with the label JSon Parsing

Live Cricket Score Example

Image
This example will show you how can you build a cricket live score application in android using JSON Parsing. Quick steps to perform:- 1) Create two additional java files. The first file will use to fetch data in the background and the second is used to show the data. 2) Create one Layout file to show data. 3) Search the Live Score API for your project. First open the main.xml file and add listview to show the current live match. Main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout>         <TextView                       android:layout_width="wrap_content"                        android:layout_height="wrap_content"                      android:text="New Text"                       an...