Searched defs: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 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/tests/JankBench/app/src/main/java/com/android/benchmark/app/
H A DBenchmarkListAdapter.java100 public View getChildView(int groupPosition, int childPosition, 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
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java279 boolean isLastChild = child == lastChild;
281 if ((isLastChild && !child.isInShelf()) || aboveShelf || backgroundForceHidden) {
295 expandingAnimated, isLastChild);
307 if (isLastChild) {
470 boolean isLastChild) {
483 if (isLastChild) {
553 iconTransformDistance, scrolling, scrollingFast, expandingAnimated, isLastChild);
559 boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) {
591 } else if (isLastChild || !USE_ANIMATIONS_WHEN_OPENING || iconState.useFullTransitionAmount
606 && (isLastChild || iconStat
468 updateIconAppearance(ExpandableNotificationRow row, float expandAmount, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
557 updateIconPositioning(ExpandableNotificationRow row, float iconTransitionAmount, float fullTransitionAmount, float iconTransformDistance, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
614 setIconTransformationAmount(ExpandableNotificationRow row, float transitionAmount, float iconTransformDistance, boolean usingLinearInterpolation, boolean isLastChild) argument
[all...]
H A DExpandableNotificationRow.java1330 * @param isLastChild is this the last child in the list. If true, then the transformation is
1334 boolean isLastChild) {
1335 boolean changeTransformation = isLastChild != mIsLastChild;
1337 mIsLastChild = isLastChild;
1333 setContentTransformationAmount(float contentTransformationAmount, boolean isLastChild) argument

Completed in 201 milliseconds