是否可以像所附图像一样在表格中放置一个按钮?
根据官方文件,是的,你可以。
CellPainterdecorator
使用基础油漆工油漆,然后使用第二个油漆工装饰它。例如,在下面的代码段中
new CellPainterDecorator(
new TextPainter(),
CellEdgeEnum.RIGHT,
new ImagePainter(myImage))
class TableDecorationConfiguration extends AbstractRegistryConfiguration {
private boolean paintDecorationdepentend;
public TableDecorationConfiguration(boolean paintDecorationDependent) {
this.paintDecorationdepentend = paintDecorationDependent;
}
@Override
public void configureRegistry(IConfigRegistry configRegistry) {
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.TOP, new ImagePainter(
GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_ONE_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.BOTTOM,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_TWO_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.LEFT, new ImagePainter(
GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_THREE_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.RIGHT,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_FOUR_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.TOP_LEFT,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_FIVE_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.TOP_RIGHT,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_SIX_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.BOTTOM_LEFT,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_SEVEN_LABEL);
configRegistry.registerConfigAttribute(
CellConfigAttributes.CELL_PAINTER, new CellPainterDecorator(
new TextPainter(), CellEdgeEnum.BOTTOM_RIGHT,
new ImagePainter(GUIHelper.getImage("plus")),
this.paintDecorationdepentend), DisplayMode.NORMAL,
CellPainterDecorator_Example.COLUMN_EIGHT_LABEL);
}
我使用的界面看起来大致如下: 并且我目前正在使用一个匿名类来实现接口,但我并不关心这两种方法中的一种。大致如下: 现在,我已经在Java8中尽可能地使用新的lambda表达式,我想在这种情况下使用增加的简单性。毕竟,我只是在实现其中的一个方法,但由于接口中有两个方法,所以我不能在一个lambda表达式中使用它。
当我跑的时候
我正在使用swagger编写一个API,其中一个参数的名称中有一个变量(例如:< code > param[VARIABLE]= value )。它将以如下形式发送: 我认为参数定义是这样的: 有可能大摇大摆地实施吗?
例如,它将以1开始,然后将2添加到列表中,得到1-2。然后将检查1-2以查看序列是否符合递增/递减的规则。当它符合时,将3相加,得到1-2-3。然后检查1-2-3,这不符合。所以我们会回到1,现在加3而不是2,给出1-3等等。 我在用C。
我最近读到了这篇关于为一组已知的键生成一个最小完美哈希表的文章:Throw away the Keys:Easy,Minimal Perfect Hashing。 本文似乎假设您需要一个中间表。如果我们假设键的集合很小(即<64),那么有没有其他更简单的方法来生成这样的函数。 在我的例子中,我希望将一组线程ID:s映射到数组中的唯一数据块。线程在哈希函数生成之前启动,并且在程序运行期间保持不变。线
如何在Flutter中构建一排左右两端都是圆形的按钮?我想在我的第一个flutter应用程序中添加这样的东西。imgur.com上的例子取自我华为手机上的消息应用程序。 我可以做一系列单独的浮动动作。延伸到并排坐在一排。或一排带有RoundedRectangleBorder的RaisedButtons。但这两个看起来都有点奇怪--两个圆形的纽扣 我想大概是 我应该如何把我的小部件放在一起,在我的应