0

我在这里阅读了一个 celltable 的示例,它使用这个结构来加载数据:

 private static final List<Contact> CONTACTS = Arrays.asList(
  new Contact("John", new Date(80, 4, 12), "123 Fourth Avenue"),
  new Contact("Joe", new Date(85, 2, 22), "22 Lance Ln"),
  new Contact("George", new Date(46, 6, 6), "1600 Pennsylvania Avenue"));

如果我有一个简单的字符串列表,如何将我的列表放入这种类型的结构中?

4

1 回答 1

0

如果您有一个字符串列表,那么您将在ListBox中显示它们。如果您仍打算在 CellTable 中使用它,则将 String 包装在 Model/POJO/Bean 对象中。

Example - String "name" is wrapped in "ContactInfo" Bean.

然后,您可以将 ContactInfo 与 CellTable 一起使用。单元小部件都适用于 MVP 设计模型 -> 视图 -> 演示者

ContactInfo -> Model
CellTable -> View
ListDataProvider -> Presenter
于 2013-01-08T03:32:24.140 回答