我无法为默认表模型中的单个单元格设置所选样式



我的代码:

 Style selectedStyle = new Style();
 selectedStyle.setBgColor(0xff0055);
 Style unselectedStyle = new Style();
 unselectedStyle.setBgColor(0x004576);
 Table.setSelectedStyle(selectedStyle);
 table.setUnselectedStyle(unselectedStyle);

很容易理解这段代码作为一个整体应用于表,但我不知道如何将其应用于单个单元格。

提前谢谢。

这是为表而非特定单元格选择的样式。您需要覆盖createCell方法来手动执行此操作,或者使用资源编辑器来定义单元格的选定样式。

相关内容

  • 没有找到相关文章

最新更新