Does android (3.x, sdk 11 or grater) has a widget similar to a jtable object?
Instead of developing one from the ground (using gridview or tablelayout) I\'m searcing for
Not as such in terms of headers, sorting and so on. You will probably have to roll your own. The closest to some extend is ListView together with a ListActivity but you have to keep in mind that with the smaller screen and the navigation by touch lots of UI paradigms from JTable dont work.
Keep in mind that each list row can include many other layout items so you can emulate multi column setups easily. You can even include images that are lazily loaded, buttons for specific functionality related to this row and so on..