添加依賴 Color 不透明的紅色 Dimensions 使用 和`sp dip(dipValue) sp(spValue)` applyRecursively() applyRecursively()應用於lambda表達式的本身,然後遞歸地運用在他的子view 以上表示,該 中的 的`textS ...
添加依賴
dependencies { compile "org.jetbrains.anko:anko-commons:$anko_version" }
Color
0xff0000.opaque
不透明的紅色
Dimensions
使用dip
和sp
:dip(dipValue)
或者sp(spValue)
applyRecursively()
applyRecursively()應用於lambda表達式的本身,然後遞歸地運用在他的子view
verticalLayout {
editText {
hint = "Name"
}
editText {
hint = "Password"
}
}.applyRecursively { view -> when(view) {
is EditText -> view.textSize = 20f
}}
以上表示,該layout
中的editext
的textSize
都為20sp