Reputation: 31
I have been trying to search for on how to display the table from MySQL database in the gridview of android.. But all the example in the internet are based images... I want to display the data from the table as the gridview in asp.... Can anyone help me on this??
Thanks
Upvotes: 1
Views: 1186
Reputation: 1007644
Step #1: Write a Web service for your MySQL database, exposing the data you want
Step #2: Have your Android app call out to that Web service, retrieving and parsing the results
Step #3: Display the results in a "table" (TableLayout
, GridView
, or whatever you think a "table" is in Android)
Upvotes: 1