scaloid - ​Android 开发库


GPL
Android
Java

软件简介

scaloid是一个Android的开发库。使用Scala让代码更加简洁,清晰。

For example, the code block shown below:

val button = new Button(context)
button.setText("Greet")
button.setOnClickListener(new OnClickListener() {
  def onClick(v: View) {
    Toast.makeText(context, "Hello!", Toast.LENGTH_SHORT).show()
  }
})
layout.addView(button)

is reduced to:

SButton("Greet", toast("Hello!"))

Features