让Android开发更快和轻松的库:Anko
gww3
9年前
Anko是一个让Android App开发更快和轻松的库。它让你的代码简洁并且易于阅读。
Just a brief example. Here is a "hello world" written with Anko:
verticalLayout { val name = editText() button("Say Hello") { onClick { toast("Hello, ${name.text}!") } } }
Code above creates a button inside aLinearLayoutand attaches anOnClickListenerto that button.