Home | History | Annotate | Download | only in util

Lines Matching defs:listView

29 import android.widget.ListView;
46 private ListView mListView;
78 public ListView getListView() {
409 * Returns the LinearLayout containing the ListView in this scenario.
411 * @return The LinearLayout in which the ListView is held.
431 * @return The newly created ListView widget.
433 protected ListView createListView() {
434 return new ListView(this);
445 * Sets an adapter on a ListView.
447 * @param listView The ListView to set the adapter on.
449 protected void setAdapter(ListView listView) {
450 listView.setAdapter(new MyAdapter());