Lines Matching refs:child

75  * If a child does not specify the row and column indices of the cell it
105 * A child's ability to stretch is inferred from the alignment properties of
107 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters).
422 * based on the child's visual characteristics. Each of the
645 private int getTotalMargin(View child, boolean horizontal) {
646 return getMargin(child, horizontal, true) + getMargin(child, horizontal, false);
758 protected void onSetLayoutParams(View child, ViewGroup.LayoutParams layoutParams) {
759 super.onSetLayoutParams(child, layoutParams);
894 protected void onViewAdded(View child) {
895 super.onViewAdded(child);
903 protected void onViewRemoved(View child) {
904 super.onViewRemoved(child);
909 * We need to call invalidateStructure() when a child's GONE flag changes state.
915 protected void onChildVisibilityChanged(View child, int oldVisibility, int newVisibility) {
916 super.onChildVisibilityChanged(child, oldVisibility, newVisibility);
948 private void measureChildWithMargins2(View child, int parentWidthSpec, int parentHeightSpec,
951 getTotalMargin(child, true), childWidth);
953 getTotalMargin(child, false), childHeight);
954 child.measure(childWidthSpec, childHeightSpec);
1061 and sizing to each child view and then placing it in its cell.
1231 "(and spans) defined in the LayoutParams of each child");
1448 // duplicate entries in case a child spans the entire grid.
1752 * both aspects of alignment within the cell group. It is also possible to specify a child's
1986 * Describes how the child views are positioned. Default is {@code LEFT | BASELINE}.