I’m working on the app which should download some data form server (done) and then show then. Same way as for example android market app (searching) works. It also need to be click-able items. I was thinking about using for example linear layout and somehow dynamically creating new textview’s Is this a good way to do this? Can anybody provide some examples?
Share
I think what you are looking for is a
ListView. This widget displays items in a list fashion, you can customize how each row of the list looks and what data you want to display. Google Market probably usesGridView, since they display apps in rows with several columns.Here is a tutorial on how to use
ListView(or forGridView). Plus there are tons of related stuff available in SO.