Home | History | Annotate | Download | only in widget

Lines Matching defs:gravity

22 import android.view.Gravity;
34 * Supports one panel with the gravity set to top, and one panel with gravity set to bottom.
88 int gravity = (((LayoutParams) child.getLayoutParams()).gravity
89 & Gravity.VERTICAL_GRAVITY_MASK);
90 if (gravity == Gravity.TOP && mTopPanel == null) {
92 } else if (gravity == Gravity.BOTTOM && mBottomPanel == null) {
247 if (getForegroundGravity() == Gravity.FILL && foreground != null) {