blob: 2b84f2c49e6750928315900cc4f303f16325c2e8 [file] [log] [blame]
Chris Craikb3dba552015-08-31 17:22:04 -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
Seigo Nonaka47bc9482017-06-16 09:56:18 -070018import android.content.ComponentName;
Chris Craikb3dba552015-08-31 17:22:04 -070019import android.view.View;
20import android.view.ViewGroup;
21import android.widget.ArrayAdapter;
22import android.widget.ListAdapter;
23
Md Haqued68e8cb2015-09-01 12:00:34 -070024import com.android.test.uibench.listview.CompatListActivity;
25
Chris Craik4cbf5ef2015-09-01 15:30:57 -070026public class InflatingListActivity extends CompatListActivity {
Seigo Nonaka47bc9482017-06-16 09:56:18 -070027 private static final String PACKAGE_NAME = "com.android.test.uibench";
28 private static final ComponentName LATIN_WORDS =
29 ComponentName.createRelative(PACKAGE_NAME, ".InflatingListActivity");
30 private static final ComponentName EMOJI =
31 ComponentName.createRelative(PACKAGE_NAME, ".InflatingEmojiListActivity");
32 private static final ComponentName HAN =
33 ComponentName.createRelative(PACKAGE_NAME, ".InflatingHanListActivity");
34 private static final ComponentName LONG_STRING =
35 ComponentName.createRelative(PACKAGE_NAME, ".InflatingLongStringListActivity");
Chris Craik4cbf5ef2015-09-01 15:30:57 -070036 @Override
37 protected ListAdapter createListAdapter() {
Seigo Nonaka47bc9482017-06-16 09:56:18 -070038 final ComponentName targetComponent = getIntent().getComponent();
39
40 final String[] testStrings;
41 if (targetComponent.equals(LATIN_WORDS)) {
42 testStrings = TextUtils.buildSimpleStringList();
43 } else if (targetComponent.equals(EMOJI)) {
44 testStrings = TextUtils.buildEmojiStringList();
45 } else if (targetComponent.equals(HAN)) {
46 testStrings = TextUtils.buildHanStringList();
47 } else if (targetComponent.equals(LONG_STRING)) {
48 testStrings = TextUtils.buildLongStringList();
49 } else {
50 throw new RuntimeException("Unknown Component: " + targetComponent);
51 }
52
53 return new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, testStrings) {
Chris Craikb3dba552015-08-31 17:22:04 -070054 @Override
55 public View getView(int position, View convertView, ViewGroup parent) {
56 // pathological getView behavior: drop convertView on the floor to force inflation
57 return super.getView(position, null, parent);
58 }
59 };
60 }
Chris Craikb3dba552015-08-31 17:22:04 -070061}