Home | History | Annotate | Download | only in preference

Lines Matching defs:listView

34 import android.widget.ListView;
94 private ListView mListView;
137 * Binds a {@link ListView} to the preferences contained in this {@link PreferenceScreen} via
141 * @param listView The list view to attach to.
143 public void bind(ListView listView) {
144 listView.setOnItemClickListener(this);
145 listView.setAdapter(getRootAdapter());
169 mListView = (ListView) childPrefScreen.findViewById(android.R.id.list);
208 if (parent instanceof ListView) {
209 position -= ((ListView) parent).getHeaderViewsCount();