OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:expandableListView
(Results
1 - 3
of
3
) sorted by null
/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
37
import android.widget.
ExpandableListView
;
40
import android.widget.
ExpandableListView
.OnChildClickListener;
41
import android.widget.
ExpandableListView
.OnGroupClickListener;
45
new
ExpandableListView
(mContext);
47
new
ExpandableListView
(mContext, null);
49
new
ExpandableListView
(mContext, null, 0);
54
new
ExpandableListView
(mContext, attrs);
55
new
ExpandableListView
(mContext, attrs, 0);
58
new
ExpandableListView
(null);
64
new
ExpandableListView
(null, null)
[
all
...]
Completed in 78 milliseconds