blob: a65be43e2f05658bc64e3f968821659d358e4d87 [file] [log] [blame]
/*
* Copyright (C) 2020 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 com.android.car.ui.recyclerview;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import com.android.car.ui.test.R;
import java.util.ArrayList;
import java.util.List;
public class TestContentLimitingAdapter extends ContentLimitingAdapter<TestViewHolder> {
private final List<String> mItems;
TestContentLimitingAdapter(int numItems) {
mItems = new ArrayList<>();
for (int i = 0; i < numItems; i++) {
mItems.add("Item " + i);
}
}
@Override
protected TestViewHolder onCreateViewHolderImpl(@NonNull ViewGroup parent,
int viewType) {
View layout = LayoutInflater.from(parent.getContext())
.inflate(R.layout.test_car_ui_recycler_view_list_item, parent, false);
return new TestViewHolder(layout);
}
@Override
protected void onBindViewHolderImpl(TestViewHolder holder, int position) {
holder.bind(mItems.get(position));
}
@Override
protected int getUnrestrictedItemCount() {
return mItems.size();
}
@Override
public int getConfigurationId() {
return 0;
}
}