pocorall/scaloid · GitHub
Scala is cool. Writing Android applications with Scala is also a cool idea. Because Android exposes Java APIs, we need some utility library to leverage full power of Scala. Scaloid is a library aimed to simplify your Android code.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!"))
Tags: android, api wrapper, development, java, scala, typesafe