GeeJoe

Results 3 issues of GeeJoe

并不是每次都需要 postValue(value),有时候只需要一个 key 发送一个事件即可,希望可以支持一下 pos() 发送一个空消息

@Override public boolean onMenuItemClick(int position, SwipeMenu menu, int index) { switch (index) { case 0: //complete steps.get(position).setType(MyListViewItemBean.COMPLETED); break; case 1: //delete steps.remove(position); break; } myListViewAdapter.notifyDataSetChanged(); return false; } 这个是我的代码。当我点击删除之后,从steps中删除当前数据,然后当前item确实被删除了,但是下一个item变成了open状态,这是怎么回事?

I hope to scan out the dependencies between two modules, for example, a class in module A, and I want to scan out all the classes in Class A's dependencies...