源码地址:https://github.com/Kotlin/anko

Anko版本的 hello world :

Anko Layouts is a DSL for writing dynamic Android layouts. Here is a simple UI written with Anko DSL:

verticalLayout {
val name = editText()
button(“Say Hello”) {
onClick { toast(“Hello, ${name.text}!”) }
}
}

The code above creates a button inside a LinearLayout and attaches an OnClickListener to that button. Moreover, onClick accepts a suspend lambda, so you can write your asynchronous code right inside the listener!

Note that this is the complete layout code. No XML is required!

这个文档介绍的不错,很全面:
http://www.jianshu.com/p/7cf5b42eb25f

更多相关文章

  1. Android Jetpack之Lifecycle的源码分析
  2. Android 源码启动虚拟机经验
  3. Android MediaScannerJNI源码详解
  4. 获取Android版本信息和电话信息
  5. Android 根据IP地址获取城市
  6. 2.在服务器上使用 gradle 打包 android 源码
  7. Android 源码分析 —— 从 Toast 出发
  8. 超过 50% 的 Android 设备依然运行 2.2 版本
  9. Android版本与Linux内核的关系

随机推荐

  1. Android(安卓)wifi打开流程(Android(安卓
  2. 如何在eclipse中添加android ADT
  3. [Android(安卓)Pro] Android(安卓)TypedV
  4. android HH不能格式化时间的问题
  5. android 联机测试 usb驱动问题
  6. cocos编译android命令
  7. Android消息处理机制①
  8. Android仿微信UI布局视图(圆角布局的实现)
  9. 试用Android(安卓)Annotations
  10. xe5 android 调用照相机获取拍的照片