HomeSort by relevance Sort by last modified time
    Searched defs:expandableListView (Results 1 - 4 of 4) sorted by null

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowExpandableListViewTest.java 3 import android.widget.ExpandableListView;
13 private ExpandableListView expandableListView;
17 expandableListView = new ExpandableListView(RuntimeEnvironment.application);
22 expandableListView.performItemClick(null, 6, -1);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ExpandableListViewTest.java 4 import android.widget.ExpandableListView;
18 private ExpandableListView expandableListView;
23 expandableListView = new ExpandableListView(null);
30 expandableListView.setOnChildClickListener(myOnChildClickListener);
31 expandableListView.performItemClick(null, 6, -1);
37 expandableListView.performItemClick(null, 6, -1);
42 expandableListView.setOnChildClickListener(myOnChildClickListener);
43 expandableListView.performItemClick(null, 6, -1)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListWithHeaders.java 21 import android.widget.ExpandableListView;
41 final ExpandableListView expandableListView = getExpandableListView();
42 expandableListView.setItemsCanFocus(true);
47 expandableListView.addHeaderView(header);
53 expandableListView.addFooterView(footer);
57 setAdapter(expandableListView);
ExpandableListViewTest.java 52 import android.widget.ExpandableListView;
70 private ExpandableListView mExpandableListView;
86 new ExpandableListView(mActivity);
88 new ExpandableListView(mActivity, null);
90 new ExpandableListView(mActivity, null, android.R.attr.expandableListViewStyle);
92 new ExpandableListView(mActivity, null, 0,
95 new ExpandableListView(mActivity, null, 0,
98 new ExpandableListView(mActivity, null, 0,
101 new ExpandableListView(mActivity, null, 0,
107 new ExpandableListView(mActivity, attrs)
    [all...]

Completed in 187 milliseconds