Beehive Innovations

Results 48 comments of Beehive Innovations

To add on to this, this happens specifically if you call invalidateOptionsMenu(). We've removed all such calls and ensure we don't update or invalidate the ActionMode during or around the...

Jake I'd love to give you a demo app but I really don't know where to begin now (since our own app is immensely complex). I've actually forgotten what I...

Read this, it's recommended that weak references be used to avoid memory leaks: https://en.wikipedia.org/wiki/Observer_pattern This isn't an alien concept. It's expected.

Not trying to turn people away from EventBus, but for this reason and a lot more, I've personally moved to using RxJava. Creating a simple 'bus' (which replaces EventBus entirely)...

Sure Here's my RxBus.java class ```java public class RxBus { public static final RxBus INSTANCE = new RxBus(); private final Subject _bus; private RxBus() { _bus = PublishSubject.create().toSerialized(); } public...

Sadly I feel Advanced Recycler has become victim of **GitHub death by silence**. It was and is a great library but seems like the author no longer has time for...

This would be awesome to have! It would be even great if the 'Grouped' sections could in fact be sticky (the ones enclosing child items).

Any update on this? This is needed for our use case as well