Sen Alexandru
Sen Alexandru

Reputation: 2263

Xamarin Android Grid control

Is there a suitable grid control in Xamarin Android, table-like, for a business app that supports databindind with collections that help altering various columns/cells? As far as I find out, there are alternatives only by inheriting an existing control like ListView and creating a custom control. If a control as one I am searching for does not exist, what could be the best option left? Many thanks in advance!!

Upvotes: 1

Views: 583

Answers (1)

Grace Feng
Grace Feng

Reputation: 16652

Is there a suitable grid control in Xamarin Android, table-like, for a business app that supports databindind with collections that help altering various columns/cells?

You can refer to GridView, it displays items in a two-dimensional, scrollable grid.

And this tutorial will show how to create a Grid View.

Upvotes: 1

Related Questions