Skip to content Skip to sidebar Skip to footer

Problem With Display Mysql Data On Android Studio Using Volley

I am learning and trying to display some MySQL data using php to android studio using volley. The app is running with no errors but the data is not being displayed. I have tried to

Solution 1:

get moivename rather then only moive as per your json format

change below line

 List_Data listData=newList_Data(ob.getString("name"),ob.getString("moive"));

to This:

List_Data listData=newList_Data(ob.getString("name"),ob.getString("moivename"));

Solution 2:

android:usesCleartextTraffic="true"

put it in manifest file

https://developer.android.com/guide/topics/manifest/application-element#usesCleartextTraffic check this

Post a Comment for "Problem With Display Mysql Data On Android Studio Using Volley"