i am working on an Android app that needs showing a list[table], inside the layout[view]
I come from iPhone dev objC land, and i have an app that shows a table[list] inside the view[layout]

So how to show a list inside my layout, and place it to specified location [center],
ps. I havent found a list in the graphical layout editor of the xml, where is the list[table]?
2. I have done some tests with list views, but is a view, that replace the xml view, i want it inside my xml,,
thanks a lot!
Yes, of course, you can do that
1) you need to have
listholder.xmlhere, you can scratch anything in you layout view, either imageview, textview..etc. just don’t forget to add ListView inside it. for example:2) For custom your own list item, you have to create
listitem.xmli.e.3) create customAdapter in your activity, it would look like this;
P.S. the above code might not exactly right… just give you an idea 🙂
Here is a source about custom list (you might have seen it) hope it useful
http://www.vogella.de/articles/AndroidListView/article.html