Thinesh Manickam
Thinesh Manickam

Reputation: 31

How to display table from MySQL in Android grid view?

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions