fisherman

Results 5 comments of fisherman

@jdsjlzx LuRecyclerView里是没有,但继承了View类,View里有mContext啊。我用的是最新版本

@huajianjiang 我加了个侧滑删除的功能,首先点击按钮调用一下, ![01](https://user-images.githubusercontent.com/17759213/29859860-95cb0564-8d96-11e7-9233-58331290eb3d.png) 然后回调到activity里,就调用你的那个Presenter里的接口。 ![activity](https://user-images.githubusercontent.com/17759213/29859920-dea1da1a-8d96-11e7-89d8-c306368432db.png) 另外我发现你Activity、Presenter、Adapter里的DataList都是同一个引用,我也是这么做的。

private void stopDraw() { unlockCanvasAndPost(); if (handler != null) { handler.quit(); handler = null; } if (mHandlerThread != null) { HandlerThread handlerThread = this.mHandlerThread; mHandlerThread = null; try { handlerThread.join();...

可是,我还是没明白你是怎么修复ANR的,请指出。

因为HandlerThread - run()属于SDK了,出现ANR以后,我并没有办法去修改