cymcsg / UltimateRecyclerView

A RecyclerView(advanced and flexible version of ListView in Android) with refreshing,loading more,animation and many other features.
Apache License 2.0
7.22k stars 1.43k forks source link

How can I use UltimateRecyclerView with Action Mode? #329

Open hanliuxin5 opened 8 years ago

hanliuxin5 commented 8 years ago

I mean I see methods like this

 private void toggleSelection(int position) {
        RVAdapter.toggleSelection(position);
        actionMode.setTitle("Selected " + "1");
    }

and in the SimpleAdapter

    @Override
    public void setSelected(int pos) {
        super.setSelected(pos);
    }

but I don't understand how to use it. There is any demo can show me a way?

jjhesk commented 8 years ago

for this part you will have the ask the creator @cymcsg but this simpleadapter is no longer updated as you may have to use the updated version #314