scaloid
scaloid copied to clipboard
Scaloid makes your Android code easy to understand and maintain.
Could you please add support for the NotificationCompat class from the v4 support library? It is documented [here](https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html).
I've run into issues attempting to do the following: ``` scala class MyFragment extends ListFragment with TraitContext[Context] { override def basis = getActivity lazy val adapter = new MyAdapter override...
Currently we don't have any shortcut for [void setTextAppearance(Context, Int)](https://developer.android.com/reference/android/widget/TextView.html#setTextAppearance(android.content.Context, int)) as it takes `Context` as one of args. Is there any way to support this by Scaloid DSL? Because...
[Android kickstartr](http://androidkickstartr.com/) is an easy Android project template generator. Add a Scaloid support on Androidkickstartr.
Now we'll go with single API level as discussed in #43, so how about removing API level from our version number and follow Scala's **major.minor.bugfix** convention instead?
Hello, I've looked on scaloid layouts without xml and I have some questions: - How do you imagine support multiple devices, tablets? In standart we can create similar xml files...
There are many _onSomethingHappend_ with more than 1 callback like below (from [here](https://github.com/pocorall/scaloid/blob/master/src/main/scala/org/scaloid/common/Widget.scala#L2511-L2517)): ``` scala @inline def onItemSelected(f: => Unit): V = { basis.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener { def onItemSelected(p1: AdapterView[_], p2:...