安卓开发异常rx.exceptions.OnErrorNotImplementedException: Must be called from main thread of fragment host

rx.exceptions.OnErrorNotImplementedException: Must be called from main thread of fragment host

异常提示:必须在主线程中执行
异常描述:我在执行某个操作时出现的异常,类似跳转到首页等的页面跳转
异常解决方案:创建一个线程,在创建的线程里面执行原来想要执行的代码,new 一个handler调用post发送消息
private Handler handler = new Handler(Looper.getMainLooper());
class MyThread implements Runnable {
public void run() { 
    //原来想要执行的代码
    }
}
handler.post(new MyThread());//调用方法发送消息(原来想要执行的地方)

你可能感兴趣的:(安卓开发进阶,安卓开发异常)