got this when I upgrade anko version from 0.9 to 0...
# anko
a
got this when I upgrade anko version from 0.9 to 0.10.1; why it start to complain about this issue in the new version?
I try a quick fix by moving the
lparam
block to the end of
textView
constructure, like this:
Copy code
textView {
    doSomeThing()
}.lparams {
    blablabla()
}
and it works; but is there some other way?
found this in README:
DslMarker annotation support (calling lparams() inside View blocks is finally forbidden);
so it suppose I should call lparams outside View blocks?
d
because your original usage of lparams is wrong, it should be used after the view definition
a
ya can see that. So this should be a correction from Anko lib