Searched defs:isLastChild (Results 1 - 8 of 8) 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
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java231 boolean isLastChild = child == lastChild;
233 if (isLastChild || aboveShelf || backgroundForceHidden) {
247 expandingAnimated, isLastChild);
259 if (isLastChild) {
306 boolean isLastChild) {
312 if (isLastChild) {
346 iconTransformDistance, scrolling, scrollingFast, expandingAnimated, isLastChild);
352 boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) {
375 if (isLastChild || !USE_ANIMATIONS_WHEN_OPENING || iconState.useFullTransitionAmount
390 && (isLastChild || iconStat
304 updateIconAppearance(ExpandableNotificationRow row, float expandAmount, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
350 updateIconPositioning(ExpandableNotificationRow row, float iconTransitionAmount, float fullTransitionAmount, float iconTransformDistance, boolean scrolling, boolean scrollingFast, boolean expandingAnimated, boolean isLastChild) argument
398 setIconTransformationAmount(ExpandableNotificationRow row, float transitionAmount, float iconTransformDistance, boolean usingLinearInterpolation, boolean isLastChild) argument
[all...]
H A DExpandableNotificationRow.java1035 * @param isLastChild is this the last child in the list. If true, then the transformation is
1039 boolean isLastChild) {
1040 boolean changeTransformation = isLastChild != mIsLastChild;
1042 mIsLastChild = isLastChild;
1038 setContentTransformationAmount(float contentTransformationAmount, boolean isLastChild) argument

Completed in 161 milliseconds