Home | History | Annotate | Download | only in listview
      1 /*
      2  * Copyright (C) 2007 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  */
     16 
     17 package android.widget.listview;
     18 
     19 import android.app.Activity;
     20 import android.os.Bundle;
     21 import android.widget.ArrayAdapter;
     22 import android.widget.ListView;
     23 
     24 import com.android.frameworks.coretests.R;
     25 
     26 /**
     27  * Exercises a list width dividers and padding.
     28  */
     29 public class ListDividers extends Activity {
     30     private ListView mListView;
     31 
     32     @Override
     33     public void onCreate(Bundle icicle) {
     34         super.onCreate(icicle);
     35 
     36         setContentView(R.layout.list_dividers);
     37 
     38         String values[] = new String[1000];
     39         for (int i = 0; i < 1000; i++) {
     40             values[i] = ((Integer) i).toString();
     41         }
     42 
     43         mListView = (ListView) findViewById(android.R.id.list);
     44         mListView.setAdapter(new ArrayAdapter<String>(this,
     45                 android.R.layout.simple_list_item_1, values));
     46 
     47     }
     48 
     49     public ListView getListView() {
     50         return mListView;
     51     }
     52 }
     53