Android parse json to gridview in aide ide
Tutorials on how parse json files into gridview using android volley library in aide ide. In this tutorial we use two important android library one is android volley and second is picasso . This two library is important, the volley library is to parse json files and the picasso library is for the image display. Now lets start coding, first goto your "build.gradle" and add this two librarys compile 'com.android.volley:volley:1.1.0-rc1' compile 'com.squareup.picasso:picasso:2.4.0' Next goto your "AndroidManifest.xml" and add two permission: <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> In your "MainActivity.java" paste this code [This a full code of MainActivity.java] import android.app.*; import android.content.*; import android.content.res.*; import android.graphics.*; import android.net.*; ...