Searched refs:isLastChild (Results 1 - 9 of 9) 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 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
H A DSimpleCursorTreeAdapter.java248 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) { argument
H A DExpandableListConnector.java449 final boolean isLastChild = posMetadata.groupMetadata.lastChildFlPos == flatListPos;
452 posMetadata.position.childPos, isLastChild, convertView, parent);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java265 boolean isLastChild = child == lastChild;
267 if ((isLastChild && !child.isInShelf()) || aboveShelf || backgroundForceHidden) {
281 expandingAnimated, isLastChild);
293 if (isLastChild) {
397 boolean isLastChild) {
410 if (isLastChild) {
480 iconTransformDistance, scrolling, scrollingFast, expandingAnimated, isLastChild);
486 boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) {
516 if (isLastChild || !USE_ANIMATIONS_WHEN_OPENING || iconState.useFullTransitionAmount
531 && (isLastChild || iconStat
395 updateIconAppearance(ExpandableNotificationRow row, float expandAmount, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
484 updateIconPositioning(ExpandableNotificationRow row, float iconTransitionAmount, float fullTransitionAmount, float iconTransformDistance, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
539 setIconTransformationAmount(ExpandableNotificationRow row, float transitionAmount, float iconTransformDistance, boolean usingLinearInterpolation, boolean isLastChild) argument
[all...]
H A DExpandableNotificationRow.java1096 * @param isLastChild is this the last child in the list. If true, then the transformation is
1100 boolean isLastChild) {
1101 boolean changeTransformation = isLastChild != mIsLastChild;
1103 mIsLastChild = isLastChild;
1099 setContentTransformationAmount(float contentTransformationAmount, boolean isLastChild) argument
/frameworks/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 173 milliseconds