Is Any Normal Table View In Android?
I need to build something like this but in Android. How to create table (like JTable in swing), which will have: static headers clickable rows (like ListView element) scrollable
Solution 1:
There isn't a component like this on Android. You should create a ListView
with the content rows and above a layout with the header row. And make the column division on the layout that you will use to represent each row on the ListView.
Other way is create a TableLayout
inside a scroll, like this answer suggests: focusable row inside table android
Post a Comment for "Is Any Normal Table View In Android?"