如何在 Anko 的 gridLayout 中为元素设置列值和行值?
我尝试了几个版本,但这不能编译:
return UI {
gridLayout() {
columnCount = 2
rowCount = 3
button("1x1") {
}.lparams() { column = 1; row = 1 }
}
}.view
当我把它像这样(作为一个函数)或作为大括号内的属性时,它说它不能引用column
or row
。当我将它们作为参数提供给 lparams 时,它会显示none of the following functions can be called with arguments supplied
.