How to display data in tabular format in android?

I am new to android. Now I am working on some sample database programs. Now I have a problem with displaying data received from the database in a tabular format. If anyone knows the answer, please help me with the source code.

+4
source share
1 answer

You can use TableLayout wrapped in a ScrollView . Or you can use a GridView . It depends on whether you want to let people select cells or not.

+6
source

All Articles