compile "org.jetbrains.anko:anko-commons:$anko_version"

}

Color

0xff0000.opaque 不透明的红色

Dimensions

使用dipsp:dip(dipValue)或者sp(spValue)

applyRecursively()

verticalLayout {
editText {
hint = "Name"
}
editText {
hint = "Password"
}
}.applyRecursively { view -> when(view) {
is EditText -> view.textSize = 20f
}}

以上表示,该layout中的editexttextSize都为20sp

05-11 18:13