use of com.yumore.provider.entity.reseult.KnowledgeSystem in project RxMVP by Yumore.
the class CategoryFragment method onItemTagClick.
@Override
public void onItemTagClick(BaseQuickAdapter<?, ?> adapter, View view, int parentId, int position) {
KnowledgeSystem knowledgeSystem = knowledgeSystems.get(parentId);
ChildrenBean childrenBean = knowledgeSystem.getChildren().get(position);
startActivity(new Intent(getContext(), KnowledgeActivity.class).putExtra("title", childrenBean.getName()).putExtra("cid", childrenBean.getId()));
}
Aggregations