-
BackFragment.java
BaseBackFragment extends SwipeBackFragment;
public class BackFragment extends BaseBackFragment {
@Override
public int getContentViewId() {
return R.layout.home_layout…
-
Hello,
Great work on this lib. I am using it in onResume with observeInternetConnectivity() and are creating my subscriptions in onStart. This creates although a problem that even if I have internet…
-
`public static final class RxBus {
private static Bus sBus;
```
public static synchronized get() {
if (sBus == null) {
sBus = new Bus();
}
return sBus;
}
```
}`
forget retur…
-
onHiddenChanged 这个方法,在切换这4个fragment的时候会被调用
但是在第一个fragment中startFragment跳转到别的页面,这个方法就不会被调用了
因为用的都是一个activity,所以 onResume,onPause这些方法就不起作用了。。
up,怎么知道这个页面当前的可见状态??
-
Hi, I want to replace EventuBus with RxBus in my application...but when I start to work with it I found initial problem for me. In EventBus I've a method `isRegistered` to check if an object is regist…
-
Is there any reason for migrating the minimum sdk to 15?
-
In my initial Activity I set up Deepstreem as shown below:
```java
DeepstreamFactory factory = DeepstreamFactory.getInstance();
try {
deepstreamClient = factory.getClient("wss://...");
…
-
Hi, i used RxBus in my project, but i find a problem, here is没有code:
RxBus.getDefault().toObserverable(OperateEvent.class)
.compose(this.bindToLifecycle())
…
-
We accidentally triggered a BackPressure which caused RxBus to choke.
`Fatal Exception: java.lang.IllegalStateException: Exception thrown on Scheduler.Worker thread. Add`onError`handling.
at r…
-
Can you add a method:
public static AndroidRxBus create(RxBus.Logger logger) {
return create(new AndroidQueueCache(), logger);
}
to net.jokubasdargis.rxbus.AndroidRxBus ?