Searched defs:isLastChild (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DResourceCursorTreeAdapter.java98 public View newChildView(Context context, Cursor cursor, boolean isLastChild, argument
100 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
H A DExpandableListAdapter.java134 * @param isLastChild Whether the child is the last child within the group
145 View getChildView(int groupPosition, int childPosition, boolean isLastChild, argument
H A DSimpleCursorTreeAdapter.java248 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) { argument
H A DSimpleExpandableListAdapter.java221 public View getChildView(int groupPosition, int childPosition, boolean isLastChild, argument
225 v = newChildView(isLastChild, parent);
235 * @param isLastChild Whether the child is the last child within its group.
239 public View newChildView(boolean isLastChild, ViewGroup parent) { argument
240 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
H A DCursorTreeAdapter.java236 public View getChildView(int groupPosition, int childPosition, boolean isLastChild, argument
247 v = newChildView(mContext, cursor, isLastChild, parent);
251 bindChildView(v, mContext, cursor, isLastChild);
261 * @param isLastChild Whether the child is the last child within its group.
265 protected abstract View newChildView(Context context, Cursor cursor, boolean isLastChild, argument
275 * @param isLastChild Whether the child is the last child within its group.
278 boolean isLastChild);
277 bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java144 public View getChildView(int groupPosition, int childPosition, boolean isLastChild, argument

Completed in 290 milliseconds