scaloid
scaloid copied to clipboard
Scaloid makes your Android code easy to understand and maintain.
Proguard warning: _**Reading library jar [/usr/local/android-sdk/platforms/android-20/android.jar] Initializing... Warning: org.scaloid.common.TraitWebView$class: can't find referenced method 'int getVisibleTitleHeight()' in library class android.webkit.WebView**_ seems getVisibleTitleHeight has been removed? or it's hidden.
It would be great if you could publish the `scaloid-support-v4 library` to a maven repository like the main `scaloid` project.
I have code like: ``` class MapFragment extends Fragment with Contexts[Fragment] with SharedPreferences.OnSharedPreferenceChangeListener { implicit var ctx:Context = _ override def onActivate(a:Activity) { ctx = a val locationService = new...
I am finding that one subsequent compiles while using Scaloid, some of my string resources are getting mixed up, i.e., seeing the wrong string for a R.string.xx resource ID. Doing...
Hi I want create a Layout. Using the converter I get this code: contentView = new SVerticalLayout { STextView("Large Text")..textAppearance(android.R.attr.textAppearanceLarge) this += new SLinearLayout {}.visibility(View.VISIBLE).orientation(LinearLayout.HORIZONTAL) SButton("New Button"). SButton("New Button"). SButton("New...
How would one go about adding v7 support so widgets like the Toolbar can be used?
Until now there is a line inside my BaseAdapters that looks like this ``` LayoutInflater.from(context).inflate(R.layout.list_item, null); ``` I cannot get how I could use Scaloid to get rid of the...
... as well as implicit conversions for its associated `SurfaceTextureListener`.
This code is expected working: ``` mDrawerLayout = new DrawerLayout(ctx) { new STextView("Me also too") this += new SLinearLayout { STextView("Action 1") STextView("Action 2") STextView("Action 3") }..background(0xff393e44) } ```