/* * Copyright 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package androidx.recyclerview.selection.testing; import static org.junit.Assert.assertTrue; import android.view.ViewGroup; import androidx.recyclerview.selection.SelectionTracker; import androidx.recyclerview.widget.RecyclerView; import androidx.recyclerview.widget.RecyclerView.Adapter; import androidx.recyclerview.widget.RecyclerView.AdapterDataObserver; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class TestAdapter extends Adapter { private final List mItems = new ArrayList<>(); private final List mNotifiedOfSelection = new ArrayList<>(); private final AdapterDataObserver mAdapterObserver; public TestAdapter() { this(Collections.EMPTY_LIST); } public TestAdapter(List items) { mItems.addAll(items); mAdapterObserver = new RecyclerView.AdapterDataObserver() { @Override public void onChanged() { } @Override public void onItemRangeChanged(int startPosition, int itemCount, Object payload) { if (SelectionTracker.SELECTION_CHANGED_MARKER.equals(payload)) { int last = startPosition + itemCount; for (int i = startPosition; i < last; i++) { mNotifiedOfSelection.add(i); } } } @Override public void onItemRangeInserted(int startPosition, int itemCount) { } @Override public void onItemRangeRemoved(int startPosition, int itemCount) { } @Override public void onItemRangeMoved(int fromPosition, int toPosition, int itemCount) { throw new UnsupportedOperationException(); } }; registerAdapterDataObserver(mAdapterObserver); } @Override public TestHolder onCreateViewHolder(ViewGroup parent, int viewType) { return new TestHolder(parent); } @Override public void onBindViewHolder(TestHolder holder, int position) { throw new UnsupportedOperationException(); } @Override public int getItemCount() { return mItems.size(); } public void updateTestModelIds(List items) { mItems.clear(); mItems.addAll(items); notifyDataSetChanged(); } public int getPosition(K key) { return mItems.indexOf(key); } public K getSelectionKey(int position) { return mItems.get(position); } public void resetSelectionNotifications() { mNotifiedOfSelection.clear(); } public void assertNotifiedOfSelectionChange(int position) { assertTrue(mNotifiedOfSelection.contains(position)); } public static List createItemList(int num) { List items = new ArrayList<>(num); for (int i = 0; i < num; ++i) { items.add(Integer.toString(i)); } return items; } }