rams
rams

Reputation: 69

displaying data in android app retrieved from database

I want to display data which is retrieved from any database. which view is best grid view or table . can we display data in the grid view like table format. Please suggest me any one.

Upvotes: 0

Views: 530

Answers (2)

Jackson Chengalai
Jackson Chengalai

Reputation: 3937

u can use list view,grid view and also u can use view group for this purpose...i recommend listview because it is lighter compared to viewgroup.

Upvotes: 2

GAMA
GAMA

Reputation: 5996

You can use the ListView which can contain no. of columns within each row.

Data can be populated by using ArrayAdapter or Custom Adapter which extends BaseAdapter.

You may refer to this on SO.

Upvotes: 1

Related Questions