Home | History | Annotate | Download | only in transitiontests

Lines Matching refs:listview

28 import android.widget.ListView;
51 final ListView listview = (ListView) findViewById(R.id.listview);
57 listview.setAdapter(adapter);
63 System.out.println("onLayoutListener: listview view tops: ");
64 for (int i = 0; i < listview.getChildCount(); ++i) {
65 TextView view = (TextView) listview.getChildAt(i);
71 final Scene mySceneChanger = new Scene(listview);
90 System.out.println("---------ListView Tops: Before--------");
91 for (int i = 0; i < listview.getChildCount(); ++i) {
92 TextView view = (TextView) listview.getChildAt(i);
93 int position = listview.getPositionForView(view);
99 System.out.println("---------ListView Tops: After--------");
100 for (int i = 0; i < listview.getChildCount(); ++i) {
101 TextView view = (TextView) listview.getChildAt(i);
102 int position = listview.getPositionForView(view);
111 listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
115 System.out.println("---------ListView Tops: OnClick--------");
117 for (int i = 0; i < listview.getChildCount(); ++i) {
118 TextView v = (TextView) listview.getChildAt(i);
123 // listview.setHasTransientState(true);
130 // for (int i = 0; i < listview.getChildCount(); ++i) {
131 // TextView v = (TextView) listview.getChildAt(i);