Home | History | Annotate | Download | only in preference

Lines Matching defs:listView

31 import android.widget.ListView;
124 * Binds a {@link ListView} to the preferences contained in this {@link PreferenceScreen} via
128 * @param listView The list view to attach to.
130 public void bind(ListView listView) {
131 listView.setOnItemClickListener(this);
132 listView.setAdapter(getRootAdapter());
148 ListView listView = new ListView(context);
149 bind(listView);
156 dialog.setContentView(listView);