Marius Volkhart

Results 23 comments of Marius Volkhart

:+1: I'm using this in our implementation also. I too would like to see this as a chainable method.

:+1: from me also. Also have included it in our codebase.

Look at the [samples](https://github.com/ManuelPeinado/FadingActionBar/blob/master/samples-stock/src/com/manuelpeinado/fadingactionbar/demo/SampleFragment.java) and the documentation. It's pretty well documented.

Yes, you'll need to modify `build.gradle` to look something like: ``` groovy android { compileSdkVersion 20 buildToolsVersion '20.0.0' defaultConfig { minSdkVersion 15 targetSdkVersion 20 // Other config properties } //...

@longy26 the library applies a gradient to the header view. see the [header container file](https://github.com/ManuelPeinado/FadingActionBar/blob/master/library/res/layout/fab__header_container.xml).

We too would find the concept of `@DefaultClass` helpful. Essentially, we're looking for `PolymorphicJsonAdapterFactory.withFallbackJsonAdapter()`, where the type returned by the fallback adapter is still part of the sealed hierarchy. We'd...

(adding my details to this) **Is your feature request related to a problem? Please describe** I'm using a `.md` file to document my package, as described at https://kotlinlang.org/docs/reference/kotlin-doc.html#module-and-package-documentation I'd like...

This becomes much worse when referencing `CAPITAL_CASE` constants. The link becomes `[./-my-class/-m-y-_-c-o-n-s-t-a-n-t.html]`

This would also fix https://issues.apache.org/jira/browse/BATIK-1297

Similarly, [isChangingConfigurations()](http://developer.android.com/reference/android/app/Activity.html#isChangingConfigurations%28%29) might be even more appropriate. This could be used with [onRetainNonConfigurationInstance()](http://developer.android.com/reference/android/app/Activity.html#onRetainNonConfigurationInstance%28%29) to store the `Dynamo` between configuration changes as an alternative to the `DynamoManager`. It's deprecated but not...