-
Notifications
You must be signed in to change notification settings - Fork 184
Open
Description
return new SetDefaultCardListAdapter(mContext, new SetDefaultCardListAdapter.CardItemSelCallback() {
@Override
public void onItemCardSelClick(int position) {
LogUtils.i(TAG,"position " + position);
for (int i = 0; i < data.size(); i++) {
if (i == position) {
data.get(i).setSel(true);
} else {
data.get(i).setSel(false);
}
}
idRecyclerview.getAdapter().notifyDataSetChanged();
}
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels