Reputation: 373
I use Xamarin for an Android project.
I want to create a table, with multiple columns and rows and editable cells.
I haven't found how to do this, because I need that table to be editable. I tried tablelayout and listview, but they are not what I am looking for. I just need an idea.
Upvotes: 1
Views: 2385
Reputation: 1686
You can use GridView
and set onClick
event for each and every child-view1 inside the item, also made them
selectable. Every time you click on each child-view, display popup (or switch that
child-view) with an
EditTextor
Spinneror whatever fit with you data, change them, save, refresh
GridView`, that the BEST you CAN do. Hope this helps.
Upvotes: 1