OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AdapterItem
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeExpandableAdapter.java
75
AdapterItem
item = new
AdapterItem
(dataBindingItem, typeIndex, mItems.size(),
93
private
AdapterItem
getChildItem(int groupPosition, int childPosition) {
94
AdapterItem
item = mItems.get(groupPosition);
96
List<
AdapterItem
> children = item.getChildren();
107
AdapterItem
item = mItems.get(groupPosition);
122
AdapterItem
item = mItems.get(groupPosition);
129
AdapterItem
parentItem = mItems.get(groupPosition);
130
AdapterItem
item = getChildItem(groupPosition, childPosition);
BaseAdapter.java
50
protected final static class
AdapterItem
{
55
private List<
AdapterItem
> mChildren;
57
protected
AdapterItem
(DataBindingItem item, int type, int fullPosition,
65
void addChild(
AdapterItem
child) {
67
mChildren = new ArrayList<
AdapterItem
>();
73
List<
AdapterItem
> getChildren() {
103
protected final List<
AdapterItem
> mItems = new ArrayList<
AdapterItem
>();
141
protected View getView(
AdapterItem
item,
AdapterItem
parentItem, View convertView
[
all
...]
FakeAdapter.java
71
mItems.add(new
AdapterItem
(dataBindingItem, typeIndex, mItems.size(), index++));
99
AdapterItem
item = mItems.get(position);
Completed in 37 milliseconds