Matías Dumrauf

Results 19 comments of Matías Dumrauf

@chrisjenx does Calligraphy ignore `android:textViewStyle` if it is not initialized in the **Application** class? It keeps ignoring this attribute in my project too.

So it seems like a bug in the support library, which they say it is fixed but seems to me is not https://code.google.com/p/android/issues/detail?id=169873

The issue is clear in the stacktrace. Please read it: ``` Caused by: java.lang.ClassNotFoundException: org.apache.commons.codec.DecoderException ``` The class that was not found is in `commons-codec-1.9.jar`, which is not bundled together...

Yo haría un pre-fetching de 5 mp3, y a medida que vaya terminando carga otros. Acá hay una playlist _reducida_: https://www.youtube.com/playlist?list=PLO_9koiQD7cUxT3MfjP8vbaB5dFYA46Nb

I like @byronsliger approach. I am thinking about using reflection to access the binding object and retrieve all the `Field` that are `instanceof View` and then add the validators iterating...

@ragunathjawahar how about "annotating" the xml with custom pre-defined attributes? Pretty much like what [Calligraphy](https://github.com/chrisjenx/Calligraphy) or [Android-Iconics](https://github.com/mikepenz/Android-Iconics) do. I imagine something like: ```xml ```

@jonasrottmann what prevents this from being implemented? Need help?

Regarding literal arrays, you can avoid the variable by casting (starting C99). Something like this should work: ``` c should(numbers) be equal (int[5] { 16, 2, 77, 40, 12071 })...

Could you please provide more info on what is this requirement about?

I think that being able to have selectable hint from dropdown does make sense in the way that you can reset the Spinner to the default-no-option-selected status. Otherwise there wouldn't...