use of com.yydcdut.note.views.setting.IEditCategoryView in project PhotoNoter by yydcdut.
the class EditCategoryPresenterImpl method attachView.
@Override
public void attachView(IView iView) {
mHandler = new Handler(this);
mDeleteCategoryIdList = new ArrayList<>();
mRenameCategoryLabelMap = new HashMap<>();
mEditCategoryView = (IEditCategoryView) iView;
mRxCategory.getAllCategories().observeOn(AndroidSchedulers.mainThread()).subscribe(categories -> mEditCategoryView.showCategoryList(categories), (throwable -> YLog.e(throwable)));
}
Aggregations