Jens Driller

Results 14 comments of Jens Driller

Yep. I can confirm using the **com.actionbarsherlock.internal.nineoldandroids** methods instead of an external .jar fixes this issue.

I'm using the latest **Android Studio 0.8.10** with **Gradle 0.12.2**. I can see all the _BoundOfxxx_ classes being generated under `build/classes/test` but they don't get picked up by AS. Any...

**Note**: The official [SwitchCompat](https://developer.android.com/reference/android/support/v7/widget/SwitchCompat.html) widget doesn't animate either...

Sure, @msutherland4807. However, that would enable animations on Lollipop only, so it's not really backward-compatible. Also, I personally don't like to maintain two almost identical `preferences.xml` files. My idea of...

I haven't had the need for a custom `PreferenceScreen` yet, hence no implementation. It's just an extension of `PreferenceGroup` though, so it shouldn't be to difficult to implement. Can you...

@cesards, can you please add a simple example for this? Do you mean inheritance for builders?

Hi @nateridderman, That sounds like a shortcoming of the library. You are right, `onTrimMemory()` is not getting called when you back out of the app via the back button. It...

Yep. The library internally relies on the `onStart()` callback so I suggest starting the app state monitor in `onCreate()` of either your `Application` or `Activity` class. Is there any particular...

> So I found out the Fragment's onCreate will only get called after Activity's onStart() if you use transcation.commit(). This obviously depends on when you are performing the `Fragment` transaction...

Hi, Can you please provide an example that reproduces the issue? It is tough to find out what the problem is without any code samples. It sounds like something is...