blob: 4647ba774b2eb5d91a8a333b68960fa870e16e47 [file] [log] [blame]
Md Haqued68e8cb2015-09-01 12:00:34 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.test.uibench;
17
18import android.support.v7.widget.RecyclerView;
19
20import com.android.test.uibench.recyclerview.RvArrayAdapter;
21import com.android.test.uibench.recyclerview.RvCompatListActivity;
22
23public class TrivialRecyclerViewActivity extends RvCompatListActivity {
24 @Override
25 protected RecyclerView.Adapter createAdapter() {
26 return new RvArrayAdapter(TextUtils.buildSimpleStringList());
27 }
28}