Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将数据源设置为 Android 应用程序?
就像在 .NET 中一样,我们gridview.datasource = datatable;的服务返回一个数据表,其中包含来自我的数据库的记录。现在我需要将 gridview 的数据源设置为从我的服务返回的数据表。我想在 Android Mono 中做同样的事情。
gridview.datasource = datatable;
(我是 Android 开发的新手。)
使用适配器来实现这一点。创建您的适配器并调用gridView.setAdapter(). Grid View中有一个指南。
gridView.setAdapter()